Skip to content

Instantly share code, notes, and snippets.

@smetronic
Created December 3, 2016 06:46
Show Gist options
  • Save smetronic/c2db4fc7198edd22a220da0cc123a56b to your computer and use it in GitHub Desktop.
Save smetronic/c2db4fc7198edd22a220da0cc123a56b to your computer and use it in GitHub Desktop.
Using ConfigurationManager
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Configuration;
namespace browser
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
var value = ConfigurationManager.AppSettings["PrimaryConnection"];
}
}
}
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<appSettings>
<add key ="PrimaryConnection" value ="SomeData" />
</appSettings>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment