FineUI 官方论坛
标题:
新手求助!!测试页报错“检测到在集成的托管模式下不...
[打印本页]
作者:
LZOM
时间:
2014-6-30 11:29
标题:
新手求助!!测试页报错“检测到在集成的托管模式下不...
具体的错误页面如下:
[attach]5728[/attach]
我的web.config配置如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false"/>
</configSections>
<!-- 可用的配置项(这里列的都是默认值):
Language="zh_CN"
AjaxTimeout="60"
EnableAjax="true"
Theme="Neptune"
FormMessageTarget="Qtip"
FormOffsetRight="20"
FormLabelWidth="100"
FormLabelSeparator=":"
IconBasePath="~/icon"
EnableAjaxLoading="true"
AjaxLoadingType="default"
CustomTheme=""
CustomThemeBasePath="~/theme"
-->
<FineUI DebugMode="false" />
<system.web>
<pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
<controls>
<add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
</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>
<httpRuntime maxRequestLength="102400 " />
<customErrors mode="Off" />
<compilation debug="true" targetFramework="4.0" />
</system.web>
</configuration>
复制代码
我的测试页的代码如下:(仅仅加了一个按钮)
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<f:Button ID="Button1" runat="server" Text="Button"></f:Button>
</div>
</form>
</body>
</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