I have a solution
and this solution has two web applications. In one web application, I
have web user controls such as Header, Footer, Loginform, etc and I
want to be able to use them in my second application.
In VS2003 I would just add a
reference in my second application by pointing to the .dll assembly in
the first application and add a register directive something like below
to use that.
<%@ Register Tagprefix="kapps" Namespace="KApps.Control" Assembly="KApps" %>
But here is where I am confused...
When I build my solution in VS2005, I don't see and dll asseblies
created in the bin folder. Where are is the assembly? Since I can't see
them, how can I add them as references into my second application? (I
added bin folder into the application hoping the dll would show up but
of course that was silly)
1. What is the right way to handle adding references?
2. Where do the dlls go after building the project?
thanks