|
板凳
楼主 |
发表于 2012-11-27 08:11:21
|
只看该作者
本帖最后由 wang4978 于 2012-11-27 08:12 编辑
- <?xml version="1.0"?>
- <configuration>
- <configSections>
- <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
- </configSections>
- <!-- 可用的配置项(这里列的都是默认值):Language="zh_CN" AjaxTimeout="60" EnableAjax="true" Theme="blue" FormMessageTarget="qtip" FormOffsetRight="20" FormLabelWidth="100" FormLabelSeparator=":" IconBasePath="~/icon" EnableAjaxLoading="true" AjaxLoadingType="default" CustomTheme="" CustomThemeBasePath="~/theme" -->
- <FineUI EnableBigFont="true" DebugMode="false" AjaxLoadingType="Mask"/>
- <appSettings>
- <!-- 连接字符串是否加密 -->
- <add key="ConStringEncrypt" value="false"/>
- <!-- 数据库连接字符串,(如果采用加密方式,上面一项要设置为true;加密工具,可在官方下载,
- 如果使用明文这样server=127.0.0.1;database=.....,上面则设置为false。 -->
- <add key="ConnectionString" value="server=192.168.1.70;database=DSC;uid=sa;pwd=123456"/>
- <!--其它模块连接字符串,可以不断增加以便同一个项目支持连接多个数据库。如果没有,可以删除该行-->
- <add key="ConnectionString2" value="server=127.0.0.1;database=codematic2;uid=sa;pwd=1"/>
- </appSettings>
- <system.web>
- <httpRuntime executionTimeout="3600" maxRequestLength="1048576"/>
- <compilation debug="true" targetFramework="4.0">
- <assemblies>
- <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
- </assemblies>
- </compilation>
- <customErrors mode="Off"/>
- <identity impersonate="true"/>
- <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
- <controls>
- <add assembly="FineUI" namespace="FineUI" tagPrefix="x"/>
- </controls>
- </pages>
- <httpHandlers>
- <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
- </httpHandlers>
- <httpModules>
- <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
- </httpModules>
- </system.web>
-
- <system.webServer>
- <modules>
- <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
- </modules>
- <handlers>
- <add name="FineUIResAxd" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
- </handlers>
- </system.webServer>
- <location path="res.axd">
- <system.web>
- <authorization>
- <allow users ="*" />
- </authorization>
- </system.web>
- </location>
- </configuration>
复制代码 照着做了一边,完全不行,都不知道为什么,上面是我的web.config |
|