Ask a Question related to ASP.NET General, Design and Development.
-
Ryan Moore #1
assembly directory
I need to add an additional directory to search for assemblies other than
the "bin" directory.... how do I do this in the web.config file?
Ryan Moore Guest
-
Assembly acessing StrongNamed assembly getting "Access Denied" intermitently
I have an ASP.NET application that is using a code library our development team uses. The code library is a few web controls in a Strong Named... -
Active Directory Search fails ("The directory service is unavailab
Hi all, I'm having one of those nerve wrecking errors, when trying to perform a simple search in an Active Directory. The objective of the code... -
Server cannot access application directory ... The directory does not exist or is not accessible because of security settings
If you are using Windows XP in a Workgroup, rather than a Domain, then by default "Simple Filesharing" is turned on, and you won't see a security... -
Server cannot access application directory... The directory does not exist or is not accessible because of security settings.
Hi, I have this issue with the error below. Let me explain my goal and my server environement: Goal: To have 3 separate web servers reading... -
Reading the public key inside a strongly signed assembly from the assembly itself???
Hello, is it possible to programmatically read (and how) the public key that is embedded into an assembly that has been strongly signed??? What... -
S. Justin Gengo #2
Re: assembly directory
Ryan,
I haven't been able to find anything that says you can add a path to search
for assemblies. The only thing I found says that the <add> tag is for naming
an assembly in the \bin or GAC.
<add>
Adds an assembly reference to use during compilation of a dynamic resource.
ASP.NET automatically links this assembly to the resource when compiling
each code module.
The value of <add> is an assembly name, not a DLL path. ASP.NET looks up the
assembly name to find its physical DLL location. You can optionally specify
the wildcard character * (an asterisk) to add every assembly within an
application's private assembly cache, which is located either in the \bin
subdirectory of an application or in the Microsoft® .NET Framework install
directory (%windir%\Microsoft.NET\Framework\version\).
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Ryan Moore" <ryanmoore@hotmail.com> wrote in message
news:OwU8igcXDHA.2424@TK2MSFTNGP12.phx.gbl...directory> It's not an assembly in the GAC, I just want to set up a seperatevirtual> for assemblies because I'm running multiple testing sites off of onelike:> website.... I've done it before, I just can't remember how, somethingIt's>
> <assemblies>
>
> <add assembly="premier/bin/*" />
>
> </assemblies>
>
>
>
>
> "S. Justin Gengo" <sjgengo@aboutfortunate.com> wrote in message
> news:O4hDddcXDHA.1832@TK2MSFTNGP09.phx.gbl...> > Ryan,
> >
> > If you need to share assemblies across applications it would be best to
> > place them in the GAC Global Assembly Cache.
> >
> > I have some sample code and a link to a full article on my site,
> > [url]www.aboutfortunate.com[/url], about how to register an assembly in the GAC.> than> > very easy to do.
> >
> > Just search the library for GAC or Global Assembly Cache.
> >
> > Sincerely,
> >
> > --
> > S. Justin Gengo, MCP
> > Web Developer
> >
> > Free code library at:
> > [url]www.aboutfortunate.com[/url]
> >
> > "Out of chaos comes order."
> > Nietzche
> >
> >
> > "Ryan Moore" <ryanmoore@hotmail.com> wrote in message
> > news:uiuPCWcXDHA.1900@TK2MSFTNGP10.phx.gbl...> > > I need to add an additional directory to search for assemblies other>> >> > > the "bin" directory.... how do I do this in the web.config file?
> > >
> > >
> >
>
S. Justin Gengo Guest



Reply With Quote

