Web.config Help

  • Thread starter Thread starter Peter Avalos
  • Start date Start date
P

Peter Avalos

I am trying to configure a set of access rules for a subfolder in my
project. The folder is a subfolder in the application folder and cannot
read the dll file in the application's bin folder. How do I propertly tell
the compiler in the Web.config file used in the sub folder where to find the
application's dll? I tried the following to no avail:

<compilation defaultLanguage="vb" debug="true">
<assemblies>
<add assembly="D:\My Web Projects\application\bin\EPPP.dll"/>
</assemblies>
</compilation>

It seems like the compiler still can't find the dll. Can anyone help me
out? And if it's a matter of adding the assembly to the GAC can anyone tell
me how to properly do this? Is there anyway to this without putting the
assembly in the GAC?



Thanks,

~Peter
 
Back
Top