一开始出现小红叉,到目前的显示完整图片,就是不能跳转到登录框,经过多天努力未果,唯有请教诸位大神。
环境:windows 2012
IIS 8
目前NET 版本 2.0 ,FineUI 3.30
- <?xml version="1.0"?>
- <!--
- 有关如何配置 ASP.NET 应用程序的详细信息,请访问
- http://go.microsoft.com/fwlink/?LinkId=169433
- -->
- <configuration>
- <configSections>
- <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false"/>
-
- </configSections>
-
- <appSettings/>
-
- <FineUI EnableBigFont="true" DebugMode="false" Language="ZH_TW"/>
-
-
- <system.web>
- <httpRuntime maxRequestLength="102400 "/>
- <customErrors mode="Off"/>
- <compilation debug="true"/>
- <pages>
- <controls>
- <add assembly="FineUI" namespace="FineUI" tagPrefix="x"/>
- </controls>
- </pages>
- <httpModules>
- <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
- </httpModules>
- <httpHandlers>
- <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI" validate="false"/>
- </httpHandlers>
- <webServices>
- <protocols>
- <add name="HttpPost"/>
- </protocols>
- </webServices>
-
- </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>
- <httpErrors errorMode="Detailed"/>
- <asp scriptErrorSentToBrowser="true"/>
- </system.webServer>
- <location path="res.axd">
- <system.web>
- <authorization>
- <allow users ="*" />
- </authorization>
- </system.web>
- </location>
-
- </configuration>
复制代码 web.config
|