adding pages in live asp.net site dynamically without redeploying or recompiling?
Is there some way to add .aspx pages in live asp.net site without need to recompile or redeploy ? Please guide me.
开发者_开发百科thanks
I do not exactly understand what do you mean by "no recompile or redeploy", but:
If you use Asp.Net web site(and not web application) you can just copy aspx file with it's cs file to the web site directory and it will work.
You can simply upload aspx and cs page to the given location. If you publish your site you can upload only page related dll and aspx page.
精彩评论