FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

本论坛已关闭(禁止注册、发帖和回复)
请移步 三石和他的朋友们

FineUI首页 WebForms - MVC & Core - JavaScript 常见问题 - QQ群 - 十周年征文活动

FineUI(开源版) 下载源代码 - 下载空项目 - 获取ExtJS - 文档 在线示例 - 版本更新 - 捐赠作者 - 教程

升级到 ASP.NET Core 3.1,快、快、快! 全新ASP.NET Core,比WebForms还简单! 欢迎加入【三石和他的朋友们】(基础版下载)

搜索
查看: 2917|回复: 4
打印 上一主题 下一主题

发布到IIS7 中报错 'Ext' is undefined

[复制链接]
跳转到指定楼层
楼主
发表于 2012-11-27 06:42:49 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
发布到本机IIS7 中报错如下图:

环境如下:win7 64位
                IIS7.5
                .net 4.0

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
沙发
发表于 2012-11-27 07:01:32 | 只看该作者
板凳
 楼主| 发表于 2012-11-27 08:11:21 | 只看该作者
本帖最后由 wang4978 于 2012-11-27 08:12 编辑
  1. <?xml version="1.0"?>
  2. <configuration>
  3.   <configSections>
  4.     <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
  5.   </configSections>
  6.   <!-- 可用的配置项(这里列的都是默认值):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" -->
  7.   <FineUI EnableBigFont="true" DebugMode="false"  AjaxLoadingType="Mask"/>

  8.   <appSettings>
  9.     <!-- 连接字符串是否加密 -->
  10.     <add key="ConStringEncrypt" value="false"/>
  11.     <!-- 数据库连接字符串,(如果采用加密方式,上面一项要设置为true;加密工具,可在官方下载,
  12.      如果使用明文这样server=127.0.0.1;database=.....,上面则设置为false。 -->
  13.     <add key="ConnectionString" value="server=192.168.1.70;database=DSC;uid=sa;pwd=123456"/>
  14.     <!--其它模块连接字符串,可以不断增加以便同一个项目支持连接多个数据库。如果没有,可以删除该行-->
  15.     <add key="ConnectionString2" value="server=127.0.0.1;database=codematic2;uid=sa;pwd=1"/>
  16.   </appSettings>
  17.   <system.web>
  18.     <httpRuntime executionTimeout="3600" maxRequestLength="1048576"/>
  19.     <compilation debug="true" targetFramework="4.0">
  20.       <assemblies>
  21.         <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  22.       </assemblies>
  23.     </compilation>
  24.     <customErrors mode="Off"/>
  25.     <identity impersonate="true"/>
  26.     <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
  27.       <controls>
  28.         <add assembly="FineUI" namespace="FineUI" tagPrefix="x"/>
  29.       </controls>
  30.     </pages>
  31.     <httpHandlers>
  32.       <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
  33.     </httpHandlers>
  34.     <httpModules>
  35.       <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
  36.     </httpModules>
  37.   </system.web>
  38.   
  39.   <system.webServer>
  40.     <modules>
  41.       <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
  42.     </modules>
  43.     <handlers>
  44.       <add name="FineUIResAxd" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
  45.     </handlers>
  46.   </system.webServer>

  47. <location path="res.axd">
  48.     <system.web>
  49.       <authorization>
  50.         <allow users ="*" />
  51.       </authorization>
  52.     </system.web>
  53.   </location>
  54. </configuration>
复制代码
照着做了一边,完全不行,都不知道为什么,上面是我的web.config
地板
 楼主| 发表于 2012-11-27 08:49:26 | 只看该作者
  1. <system.webServer>
  2.     <modules>
  3.       <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
  4.     </modules>
  5.     <handlers>
  6.       <add name="FineUIResAxd" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
  7.     </handlers>
  8.   </system.webServer>
复制代码

把这一段注释掉竟然行了,查了一下,IIS竟然是IIS 6.1

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
5#
发表于 2013-3-14 01:05:05 | 只看该作者
  1.   <!-- IIS7 Integrated Mode-->
  2.   <system.webServer>
  3.     <modules>
  4.       <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
  5.     </modules>
  6.     <validation validateIntegratedModeConfiguration="false" />
  7.     <handlers>
  8.       <add name="FineUIResAxd" verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
  9.     </handlers>
  10.   </system.webServer>
复制代码
应该多一行这个:  <validation validateIntegratedModeConfiguration="false" />
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|FineUI 官方论坛 ( 皖ICP备2021006167号-1 )

GMT+8, 2024-11-29 06:50 , Processed in 0.045914 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表