Would like to programmically change the connecton string for a database which utilizes the membership provider of asp.net within a windows application. The system.configuration namespace allows changes to the user settings, however, we would like to adjust a application setting? Does one need to write a class with utilizes XML to modify the class? Does one need to delete the current connections (can one select a connection to clear) and add a new one? Can one adjust the existing connection string?
|
2
|
|
|
|
|
|
You can programatically open the configuration with using the System.configuration namespace:
Then you can access the connection strings collection at:
You can modify the collection however you want, and when done call |
||
|
|
|
|
Use the ConnectionStringsSection class. The documentation even provides an example on how to create a new ConnectionString and have the framework save it to the config file without having to implement the whole XML shebang. See here and browse down for an example. |
||
|
|
|
|
|
||
|
|
