add - remove components in web app

  • Thread starter Thread starter CMA
  • Start date Start date
C

CMA

hi all,

is there a way to add remove components (say a set of pages) after
deployment without effecting to the users. I mean without restarting the
application. say I need to modify one page and include in to the
application.

any idea?

regards,
Charith
 
Hi,

No if you use code behind, the classes defined in the code behind are
compiler in a dll located in /bin so if you change it you will have to
restart the app.

The only way to add or modify a page without needing to restart the app is
if you do it in the aspx page, using <% %> just like you just to do it in
ASP :)
It's good to fast corrections, bad for the long term.

Cheers,
 
Back
Top