-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathweb.config
46 lines (38 loc) · 1.65 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
<?xml version="1.0"?>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="Main.aspx" />
<add value="Login.aspx" />
</files>
</defaultDocument>
<staticContent>
<mimeMap fileExtension=".apk" mimeType="application/vnd.android.package-archive" />
</staticContent>
</system.webServer>
<location path="~/Web/Admin/pages/Login.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<appSettings>
<add key="conStr" value="Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=E:\WindowsDesktop\NJXZC\2016.09-\ASP.NET\期末项目\BookShop\App_Data\bookShop.mdf;Integrated Security=True"/>
</appSettings>
<connectionStrings>
<add name="conStr1" connectionString="Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=E:\WindowsDesktop\NJXZC\2016.09-\ASP.NET\期末项目\BookShop\App_Data\bookShop.mdf;Integrated Security=True" />
<add name="conStr" connectionString="Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=E:\WindowsDesktop\NJXZC\2016.09-\《ASP.NET》\期末项目\BookShop\App_Data\bookShop.mdf;Integrated Security=True" />
<add name="ConnectionString" connectionString="Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\bookShop.mdf;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>