haansi
haansi

Reputation: 5730

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

Upvotes: 0

Views: 262

Answers (2)

chetan
chetan

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

Alex Reitbort
Alex Reitbort

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

Related Questions