web.config
来自「企业信息文档管理系统 一个可以用于企业内部的文档资料管理的系统平台」· CONFIG 代码 · 共 27 行
CONFIG
27 行
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
<configSections>
<section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<MicrosoftWebControls>
<add key="CommonFiles" value="/website/webctrl_client/1_0" />
</MicrosoftWebControls>
-->
<appSettings>
<add key="SQLCONNECTIONSTRING" value="data source=(local);uid=sa;pwd=sa;database=DocumentDB"></add>
</appSettings>
<system.web>
<compilation defaultLanguage="c#" debug="true"></compilation>
<pages buffer="true" enableViewStateMac="false" smartNavigation="false" validateRequest="false"/>
<customErrors mode="RemoteOnly" defaultRedirect="DesktopModules/ErrorPage.aspx"></customErrors>
<authentication mode="Windows"/>
<httpRuntime maxRequestLength="10000" useFullyQualifiedRedirectUrl="true" executionTimeout="300"></httpRuntime>
<authorization>
<allow users="*"/>
</authorization>
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true"/>
<sessionState mode="InProc" timeout="20"/>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
</system.web>
</configuration>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?