-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWeb.config
More file actions
24 lines (20 loc) · 799 Bytes
/
Web.config
File metadata and controls
24 lines (20 loc) · 799 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"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="DBCS" connectionString="Data Source=DESKTOP-DG9P00A\SSQLSERVER;Initial Catalog=connectncode;User ID=sa;Password=sa1" providerName="System.Data.SqlClient"/>
</connectionStrings>
<appSettings>
<add key="DatabaseServer" value="DESKTOP-DG9P00A\SSQLSERVER"/>
<add key="Database" value="connectncode"/>
<add key="UserId" value="sa"/>
<add key="Password" value="sa1"/>
<add key="integrated security" value="true"/>
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
</configuration>