-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb.config
More file actions
28 lines (22 loc) · 768 Bytes
/
Web.config
File metadata and controls
28 lines (22 loc) · 768 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
25
26
27
28
<?xml version="1.0"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".webp" mimeType="image/webp" />
</staticContent>
</system.webServer>
<connectionStrings>
<add name="PTGcnn" connectionString="Data Source=CODEROM; Initial Catalog=PlacesToGo;Integrated Security=True;" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<pages validateRequest="false" />
<httpRuntime requestValidationMode="2.0" />
</system.web>
<system.web>
<sessionState mode="InProc" timeout="60" />
</system.web>
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None"/>
</appSettings>
</configuration>