Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: nauman_ahmedPosted on 2004-05-18 at 19:48:22ID: 11104241
what kind of config file you are looking for? If it is a web application it is better to create the key value pair in the Web.config file itself. An example is given below:
Jet.OLEDB. 4.0;Data source=c:\mydb.mdb"></add> /add>
gurationSe ttings.App Settings[" DATABASE_P ATH"];
<configuration>
<appSettings>
<add key="DATABASE_PATH" value="c:\MYDb.mdb"></add>
<add key="CONNECTION_STRING" value="Provider=Microsoft.
<add key="ADMINISTRATOR_NAME" value="System Administrator"></add>
<add key="ADMIN_EMAIL" value="admin@domain.com"><
</appSettings>
</Configuration>
When you want to refer to these key value pairs, use the following code:
string strDBPath = System.Configuration.Confi
-Nauman