<?xml version="1.0"?>
<!--
Note: In addition to manually editing this file, you can also use
Web management tools to configure the settings of the application. You can use the
"Website" -> "Configuration" option.
The complete list of settings and comments in
In the file, the file is usually located in
\Windows\\Framework\\Config
-->
<configuration>
<appSettings>
<add key="accessCon" value="Provider=.4.0;
Data Source=|DataDirectory|db_access.mdb"/> <!--accesscon database connection-->
<add key="sqlCon" value="Data Source=(local);Database=Northwind;Uid=sa;Pwd="/><!--Sqlserver Database Connection-->
</appSettings>
<connectionStrings/>
<>
<!--
Set compilation debug="true" to insert debug symbols into
In the compiled page. But because this will
Impact performance, so this value is only added during development
Set to true.
-->
<compilation debug="true"/>
<!--
The useable through the <authentication> section
Secure authentication mode,
To identify the incoming user.
-->
<authentication mode="Windows"/>
<sessionState mode="InProc" timeout="10"></sessionState><!--session expiration time-->
<httpRuntime maxRequestLength="4096" executionTimeout="100"/><!--File upload size limit and timeout-->
<!--
If an unprocessed error occurs during the execution of the request,
Then the corresponding processing steps can be configured through the <customErrors> section. Specifically,
Developers can configure this section
html error page to display
instead of error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="">
<error statusCode="403" redirect="" />
<error statusCode="404" redirect="" />
</customErrors>
-->
</>
</configuration>