hi, I want to define a folderpath in app.config & read it into vb.net2005's vb file please guide
app.config
Collapse
X
-
Tags: None
-
Hi,
Information is stored as Key-Value pairs. After we write the data source information in a program, it will be difficult to change the data source information. This will create problems when we deploy the programs from test server to production servers.
Till .Net was released this information was stored this information in .ini files or in system registry. It is not easy job to open the registry, locate entries and make appropriate changes.
.NET gives a simple and easy solution for this problem - the Application Configuration File.Comment
Comment