Reputation: 5730
Is there some way to add .aspx pages in live asp.net site without need to recompile or redeploy ? Please guide me.
thanks
Upvotes: 0
Views: 262
Reputation: 1
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.
Upvotes: 0
Reputation: 13696
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.
Upvotes: 2