GAC Problems continued ...

foonsespits

New Member
Heya, <BR><BR>I'm still having issues with getting an assembly running from the Global Assembly Cache. I've compiled the strong named assembly into a .dll using the command line compiler, installed the assembly into the gac using gacutil -i and added a reference to the assemblly in my web.config, but when attempting to access the namespace all I get is an error stating that one or more of the components for the namespace could not be found. I have a feeling i'm not referencing the assembly correctly, here is what I have in web.config (the dll is named templateVB):<BR><BR><!-- Web.Config Configuration File --><BR><configuration><BR> <!-- application specific settings --><BR> <appSettings><BR> <add key="dbConnStr" value=http://aspmessageboard.com/archive/index.php/"server=editedOut;uid=editedOut;pwd=editedOut;datab ase=editedOut" /><BR> <add key="dbConnStrVCNM" value="server=editedOut;uid=editedOut;pwd=editedOut;datab ase=editedOut" /><BR> </appSettings><BR> <system.web><BR> <compilation debug="true"><BR> <assemblies><BR> <add assembly="templateVB"/><BR> </assemblies><BR> </compilation><BR> <customErrors mode="Off"/><BR> </system.web><BR></configuration><BR><BR>Been fighting with this for a few days, any help is definately appreciated. <BR><BR>])ry<BR><BR>
 
Back
Top