More specifically, what do I need to know about doing this in Visual Studio 2008 that's different from VS2005? I have found a decent number of references for doing this kind of thing in VS2005, such as
- http://webproject.scottgu.com/CSharp/usercontrols/usercontrols.aspx
- http://stackoverflow.com/questions/323702/techniques-for-distributing-asp-net-user-controls-across-projects
- http://weblogs.asp.net/scottgu/archive/2005/08/28/423888.aspx
- http://support.microsoft.com/kb/324785
but even the Microsoft reference doesn't seem to say much about VS2008. This question stems from one I asked earlier, found here.
Going one step further, once I manage to build one of these assemblies (presumably a DLL), what would someone else need to do with my DLL in order include it (as a single page, or maybe sub-section) in their ASP.NET web site?
EDIT: Still more searching has turned up this, which looks a lot (but not exactly) like what I am trying to figure out. Either:
- I write the code for both the ASP.NET Web Site and Web Application, and then somehow hand that off to the owner of the main ASP.NET web site, or
- I only write the code for the Application (thus creating the user control), and somehow the owner of the main ASP.NET web site shoves my user control into their site.
I hope this clarifies what I'm asking.