Web.config Help

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top