Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing code on the fly

Status
Not open for further replies.

tjw2006

Programmer
Nov 16, 2006
103
GB
Hi, is it possible to change the vb code behind a asp.net page once it has been deployed without having to do it in the designer and rebuilding it and having to deploy the whole project again?

Thanks
 
It depends on how you have built and deployed the project. If you build it so that it all gets compiled into 1 dll in the bin folder (which is usually the default), then no. If you have built it so that each page gets it's own assembly and dll then you can just recompile and deploy that assembly and page.

Mark,

Darlington Web Design[tab]|[tab]Experts, Information, Ideas & Knowledge[tab]|[tab]ASP.NET Tips & Tricks
 
Thanks Mark, yes it's compiling into 1 DLL. How easy is it to get it to compile into multiple DLLs for each page?

Tim
 
Is there any way to do this if you're using a copy method to deploy the application?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top