加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

更新了ASP.NET 3.5到4.0 – > Sys.WebForms.PageRequestManag

发布时间:2020-12-16 07:10:13 所属栏目:asp.Net 来源:网络整理
导读:正如标题所示,我最近将包含UpdatePanels和类似 AJAX技术的ASP.NET 3.5应用程序更新到ASP.NET 4.0.不幸的是,UpdatePanels不再工作,整页回发使它全部向南. 的Web.config文件 ?xml version="1.0"? configuration configSections section name="exceptionHandlin
正如标题所示,我最近将包含UpdatePanels和类似 AJAX技术的ASP.NET 3.5应用程序更新到ASP.NET 4.0.不幸的是,UpdatePanels不再工作,整页回发使它全部向南.

的Web.config文件

<?xml version="1.0"?>
 <configuration>
    <configSections>
        <section name="exceptionHandling" type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings,Microsoft.Practices.EnterpriseLibrary.ExceptionHandling"/>
        <section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings,Microsoft.Practices.EnterpriseLibrary.Logging"/>
        <section name="dataConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings,Microsoft.Practices.EnterpriseLibrary.Data"/>
    </configSections>
    <system.net>
        <mailSettings>
            <smtp>
                <network host="localhost"/>
            </smtp>
        </mailSettings>
    </system.net>
    <system.web>
        <!--
             The <authentication> section enables configuration 
             of the security authentication mode used by 
             ASP.NET to identify an incoming user. 
         -->
        <authentication mode="Forms">
            <forms loginUrl="~/Login.aspx" name=".ASPXFORMSAUTH" defaultUrl="~/Administration/SystemEvents.aspx"/>
        </authentication>
        <!--
             The <customErrors> section enables configuration 
             of what to do if/when an unhandled error occurs 
             during the execution of a request. Specifically,it enables developers to configure html error pages 
             to be displayed in place of a error stack trace. -->
        <customErrors mode="RemoteOnly" defaultRedirect="~/Error.aspx">
            <error statusCode="401" redirect="~/Unauthorized.aspx"/>
        </customErrors>
        <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/></system.web>
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
    </system.webServer>
 </configuration>

在Chrome中执行时出现Javascript错误:

Uncaught TypeError: Object function Function() { [native code] } has no method '_registerScript'
Uncaught TypeError: Cannot read property 'PageRequestManager' of undefined

有什么我可以做错的?谢谢!

解决方法

我最近遇到了麻烦,因为我正在更新一个较旧的项目,并按照上面的步骤操作,但它仍然给我同样的错误.我发现我需要更新修复它的web.config文件中的一行.

我变了:

<xhtmlConformance mode="Legacy"/>

至:

<xhtmlConformance mode="Transitional"/>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读