sharing asp.net dll?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Try this
Change the output path in the project properties(release) to common folder
for both the applications.

Shailesh
MCSD .NET
 
say I create an ASP.NET application, it's being compiled into dll, working
fine, and everybody is happy.
now here is the problem:
now I have a second site, on the same machine, that beside design (which is
why its got a second copy of the aspx file) uses the same exact logic. I
don't want to copy the bin directory with the dll, what can I do in order to
share a web application between two sites on the same machine?

TY
 
wont work, it replacing any local path with "bin"... I knew about GAC, but
hope that there is another way..
 
I created the key, chnaged the assembly info, compiled the project and added
it (successfully) to the GAC.
doesn't work.
I still got the same error (could not load type "MODULE.WEBFORMNAME") when
tring to log into the site. when I open bin dir with the same dll, it's
working just fine.
any ideas?
 
Back
Top