Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Dave http://pedotnet.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Reading Web.config / App.config settings

// VB.NET 2.0

   1  
   2  #If DEBUG Then
   3      Private Shared _strConnectionString As String = My.Settings.Item("ConnStringDebug")
   4  #Else
   5      Private shared _strConnectionString As String = My.Settings.Item("ConnString")
   6  #End If
   7  
   8  
   9  // Web.Config/App.config file:
  10  
  11  <?xml version="1.0" encoding="utf-8" ?>
  12  <configuration>
  13  
  14  	<appSettings>
  15  		<add key="ConnStringDebug" value="Data Source=time01;Initial Catalog=CWBIOSVRdave;UID=sa; PWD=Clockwatch" />
  16  		<add key="ConnString" value="Data Source=time01;Initial Catalog=CWBIOSVRdave;UID=sa; PWD=Clockwatch"/>
  17  	</appSettings>
  18  </configuration>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS