-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb.config
More file actions
24 lines (21 loc) · 790 Bytes
/
Web.config
File metadata and controls
24 lines (21 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<!--
如需如何設定 ASP.NET 應用程式的詳細資訊,請造訪
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2" />
</system.web>
<connectionStrings>
<add name="SQL_ConnectionString" connectionString="Data Source=XXXXXXXXX\SQL_SOLINARI;Initial Catalog=ASP;Persist Security Info=true;User Id=XXXXXXX;Password=XXXXXXXX;" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.webServer>
<defaultDocument>
<files>
<add value="MemoryGame.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>