-
Notifications
You must be signed in to change notification settings - Fork 5
/
web.config
52 lines (51 loc) · 2.95 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<appSettings/>
<connectionStrings>
<add name="inst_mgmt_sysConnectionString" connectionString="Data Source=WEBCOM\SQLEXPRESS;Initial Catalog=inst_mgmt_sys;Integrated Security=True" providerName="System.Data.SqlClient"/>
<add name="inst_mgmt_sysConnectionString1" connectionString="Data Source=GCL-CA6A758C1E0\SQLEXPRESS;Initial Catalog=inst_mgmt_sys;Integrated Security=True" providerName="System.Data.SqlClient"/>
<add name="inst_mgmt_sysConnectionString2" connectionString="Data Source=SANGARS-4F9256B\SQLEXPRESS;AttachDbFilename=|DataDirectory|\inst_mgmt_sys.mdf;Integrated Security=True" providerName="System.Data.SqlClient"/>
<add name="inst_mgmt_sysConnectionString3" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\inst_mgmt_sys.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
<add name="inst_mgmt_sysConnectionString4" connectionString="Data Source=sangars-4f9256b\sqlexpress;Initial Catalog=inst_mgmt_sys;Integrated Security=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/></assemblies></compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows"/>
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/></system.web>
<!--
The system.webServer section is required for running ASP.NET AJAX under Internet
Information Services 7.0. It is not necessary for previous version of IIS.
-->
</configuration>