tags:

views:

58

answers:

2

I create new config section for my web app. How could i save it when i modified runtime?

A: 

You can read about Web Deployment Projects here.

mxmissile
A: 

If you change the web.config at runtime, it will cause an AppDomain reset, causing your web application to start over again, and your users to lose any work in progress.

Why do you want to change it at runtime, and what do you actually want to change?

John Saunders