You need to add a reference via the:
<%@ Assembly Name="FullyQualifiedAssemblyName" %> directive:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/c
pconassembly.asp
or specify it in <assemblies> in web.config:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/g
ngrfaddelementforassemblies.asp
-Brock
DevelopMentor
http://staff.develop.com/ballen
> Hi,
>
[quoted text clipped - 11 lines]
>
> Andy
Andy Fish - 22 Jul 2005 18:17 GMT
ok, so I have put this in the top of the file
<%@ Assembly Name="MySql.Data" %>
but I just get the error message
File or assembly name MySql.Data, or one of its dependencies, was not found
I'm not sure what you mean by the "fully qualified" assembly name. according
to the documentation I cannot put the path or file extension in the assembly
directive, just the assembly name
> You need to add a reference via the:
>
[quoted text clipped - 25 lines]
>>
>> Andy