forked from jeevan19973/ictd4-unnayan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.config
39 lines (38 loc) · 1.51 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
<?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>
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
<connectionStrings>
<add name="ConnectionString" connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<location path="">
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="3000000000"/>
</requestFiltering>
</security>
<defaultDocument>
<files>
<clear/>
<add value="Home.aspx"/>
</files>
</defaultDocument>
</system.webServer>
</location>
<system.web>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<!-- <add assembly="Microsoft.DirectX.AudioVideoPlayback, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> -->
</assemblies>
</compilation>
<httpRuntime maxRequestLength="353600" executionTimeout="900" targetFramework="4.5"/>
</system.web>
</configuration>