diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-01-12 22:37:16 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2009-01-12 22:37:16 -0800 |
commit | e7006e52470a61368d44aba7532f5e4a811f122e (patch) | |
tree | e1c2f85c4cc781a6df961cf66a3162d2d27e7455 /samples/ServiceProvider | |
parent | 14b8cdbecc3db8d66fa983ee90706860fa905135 (diff) | |
download | DotNetOpenAuth-e7006e52470a61368d44aba7532f5e4a811f122e.zip DotNetOpenAuth-e7006e52470a61368d44aba7532f5e4a811f122e.tar.gz DotNetOpenAuth-e7006e52470a61368d44aba7532f5e4a811f122e.tar.bz2 |
whitespace
Diffstat (limited to 'samples/ServiceProvider')
-rw-r--r-- | samples/ServiceProvider/Default.aspx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/ServiceProvider/Default.aspx b/samples/ServiceProvider/Default.aspx index 3f77815..67efe3a 100644 --- a/samples/ServiceProvider/Default.aspx +++ b/samples/ServiceProvider/Default.aspx @@ -6,9 +6,9 @@ <script runat="server"> protected void createDatabaseButton_Click(object sender, EventArgs e) { - string dbPath = Path.Combine(Server.MapPath(Request.ApplicationPath), "App_Data");
- if (!Directory.Exists(dbPath)) {
- Directory.CreateDirectory(dbPath);
+ string dbPath = Path.Combine(Server.MapPath(Request.ApplicationPath), "App_Data"); + if (!Directory.Exists(dbPath)) { + Directory.CreateDirectory(dbPath); } string connectionString = ConfigurationManager.ConnectionStrings["DatabaseConnectionString"].ConnectionString.Replace("|DataDirectory|", dbPath); var dc = new DataClassesDataContext(connectionString); |