[Mono-list] re: referencing a dll

Gonzalo Paniagua Javier gonzalo.lists@ximian.com
Thu, 27 May 2004 07:31:58 +0200


El jue, 27-05-2004 a las 06:56, Peter Foley escribió:
> tried that - no good
> 
> does the dll have to be in a particular directory?
> permissions?
> do i need to specify it's namespace?

You only need

<%@ Assembly Name="ABSSecurity" %>

ABSSecurity.dll should be either in bin, MONO_PATH or the GAC.

And for the namespaces from ABSSecurity you use, also:
<%@ Import namespace="blah" %>

-Gonzalo