39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
<configuration>
|
|
<!--
|
|
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
|
|
|
|
The following attributes can be set on the <httpRuntime> tag.
|
|
<system.Web>
|
|
<httpRuntime targetFramework="4.8.1" />
|
|
</system.Web>
|
|
-->
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.8.1"/>
|
|
<pages controlRenderingCompatibilityVersion="4.0"/>
|
|
</system.web>
|
|
<system.webServer>
|
|
<defaultDocument>
|
|
<files>
|
|
<clear/>
|
|
<add value="index.htm"/>
|
|
<add value="index.html"/>
|
|
<add value="index.asp"/>
|
|
<add value="index.aspx"/>
|
|
<add value="default.htm"/>
|
|
<add value="default.html"/>
|
|
<add value="default.asp"/>
|
|
<add value="default.aspx"/>
|
|
</files>
|
|
</defaultDocument>
|
|
<directoryBrowse enabled="false"/>
|
|
<httpErrors errorMode="Detailed"/>
|
|
</system.webServer>
|
|
<system.web>
|
|
<identity impersonate="false"/>
|
|
<customErrors mode="Off"/>
|
|
</system.web>
|
|
<connectionStrings>
|
|
<add name="DefaultConnection" connectionString="Server=SLASQL01;Database=Auftrag;User Id=sa;Password=sqlserver"/>
|
|
</connectionStrings>
|
|
</configuration> |