Splitting a Web application to use multiple DLLs

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

Guest

All my code behind pages gets compiled into one DLL. I would like to redirect my code behind into multiple DLLs so that I get more flexibility when installing new features to a web site. I am adding some new features to a web sites that are not ready for production. At the same I would like to be able to fix bugs without installing the new features.
I would like to put the new features into a separate DLL and keep all the old feature in another DLLs.
How can I controll which DLL my code behind uses?
 
Try http://support.microsoft.com/default.aspx?scid=kb;EN-US;307467

For now, our approach is to use a single project and a batch file that uses
the command line compiler to built the project as multiple DLLs...

Patrice

--

Arne said:
All my code behind pages gets compiled into one DLL. I would like to
redirect my code behind into multiple DLLs so that I get more flexibility
when installing new features to a web site. I am adding some new features to
a web sites that are not ready for production. At the same I would like to
be able to fix bugs without installing the new features.
 

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

Back
Top