FineUI 官方论坛
标题:
发布到IIS7 中报错 'Ext' is undefined
[打印本页]
作者:
wang4978
时间:
2012-11-27 06:42
标题:
发布到IIS7 中报错 'Ext' is undefined
发布到本机IIS7 中报错如下图:
[attach]1338[/attach]
环境如下:win7 64位
IIS7.5
.net 4.0
作者:
sanshi
时间:
2012-11-27 07:01
http://fineui.com/bbs/search.php ... +%E5%BF%85%E7%9C%8B
作者:
wang4978
时间:
2012-11-27 08:11
本帖最后由 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
作者:
wang4978
时间:
2012-11-27 08:49
<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>
复制代码
把这一段注释掉竟然行了,查了一下,IIS竟然是IIS 6.1
[attach]1339[/attach]
作者:
小龙GG
时间:
2013-3-14 01:05
<!-- IIS7 Integrated Mode-->
<system.webServer>
<modules>
<add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
</modules>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<add name="FineUIResAxd" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
</handlers>
</system.webServer>
复制代码
应该多一行这个: <validation validateIntegratedModeConfiguration="false" />
欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/)
Powered by Discuz! X3.4