FineUI 官方论坛

标题: 新手求助!!测试页报错“检测到在集成的托管模式下不... [打印本页]

作者: LZOM    时间: 2014-6-30 11:29
标题: 新手求助!!测试页报错“检测到在集成的托管模式下不...
具体的错误页面如下:
[attach]5728[/attach]
我的web.config配置如下:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>

  3.   <configSections>
  4.     <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false"/>
  5.   </configSections>
  6.   <!-- 可用的配置项(这里列的都是默认值):
  7.       Language="zh_CN"
  8.       AjaxTimeout="60"
  9.       EnableAjax="true"
  10.       Theme="Neptune"
  11.       FormMessageTarget="Qtip"
  12.       FormOffsetRight="20"
  13.       FormLabelWidth="100"
  14.       FormLabelSeparator=":"
  15.       IconBasePath="~/icon"
  16.       EnableAjaxLoading="true"
  17.       AjaxLoadingType="default"
  18.       CustomTheme=""
  19.       CustomThemeBasePath="~/theme"
  20.   -->
  21.   <FineUI DebugMode="false" />

  22.   <system.web>
  23.     <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
  24.       <controls>
  25.         <add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
  26.       </controls>
  27.     </pages>
  28.     <httpModules>
  29.       <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI" />
  30.     </httpModules>
  31.     <httpHandlers>
  32.       <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI" validate="false" />
  33.     </httpHandlers>
  34.     <httpRuntime maxRequestLength="102400 " />
  35.     <customErrors mode="Off" />
  36.     <compilation debug="true" targetFramework="4.0" />
  37.   </system.web>

  38. </configuration>
复制代码
我的测试页的代码如下:(仅仅加了一个按钮)
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

  2. <!DOCTYPE html>

  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6.     <title></title>
  7. </head>
  8. <body>
  9.     <form id="form1" runat="server">
  10.     <div>
  11.         <f:Button ID="Button1" runat="server" Text="Button"></f:Button>
  12.     </div>
  13.     </form>
  14. </body>
  15. </html>
复制代码

怎么会出现这样的错误,求大神指导!!!!



作者: Tiger    时间: 2014-6-30 12:07
换成集成模式试下
作者: sanshi    时间: 2014-6-30 12:53
换成经典模式

或者

修改Web.config 设置,网上搜一下,常见问题
作者: LZOM    时间: 2014-6-30 14:44
谢谢大家,我解决了!加入一下这段配置节就解决了:
  <system.webServer>
      <validation validateIntegratedModeConfiguration="false" />
  </system.webServer>




欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4