加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

Sys.WebForms.PageRequestManagerServerErrorException:在服务器上处理请求时出现未知错误

(2019-06-14 17:45:21)
标签:

在服务器上处理请求时

出现未知错误

microsoftjscript运行

杂谈

分类: 代码天地

1 c# asp 开发的网页,运行正常,但在开发环境下按F5进入调试状态,则会出现如下的错误:

Microsoft JScript 运行时错误: 
Sys.WebForms.PageRequestManagerServerErrorException: 
在服务器上处理请求时出现未知错误。服务器返回的状态码为: 404

Sys.WebForms.PageRequestManagerServerErrorException:在服务器上处理请求时出现未知错误


2 原因是 局部刷新的UpdatePanel,所依赖的 ScriptManager 默认加入时
  EnablePartialRendering  ="true"
将其改为false
  EnablePartialRendering  ="false" 
再进入调试就没有问题

3 当调试完成正常发布时,再改为 true 即可。当然如果正常运行也出现错误就设为false,只不过是整体刷新闪烁,而不是局部刷新。

 因此  调试时改为 false:

< %@ Page Title="" Language="C#" MasterPageFile="~/StaticMasterPage.master" CodeFile="Login.aspx.cs" Inherits="Login"  %>
< asp:Content ID="Content2" ContentPlaceHolderID="contentPlaceHolderContent" Runat="Server">
 
  < asp:ScriptManager ID = scriptmanager  runat ="server"  EnablePartialRendering  ="false">
  < /asp:ScriptManager>
 < asp:Panel ID="Panel1" runat="server" HorizontalAlign="Center" Height="365px"  >
   < asp:UpdatePanel ID = updatepanel runat ="server"  UpdateMode ="Conditional">


Sys.WebForms.PageRequestManagerServerErrorException:在服务器上处理请求时出现未知错误


  发布时改为 true:

< %@ Page Title="" Language="C#" MasterPageFile="~/StaticMasterPage.master" CodeFile="Login.aspx.cs" Inherits="Login"  %>
< asp:Content ID="Content2" ContentPlaceHolderID="contentPlaceHolderContent" Runat="Server">
 
  < asp:ScriptManager ID = scriptmanager  runat ="server"  EnablePartialRendering  ="true">
  < /asp:ScriptManager>
 < asp:Panel ID="Panel1" runat="server" HorizontalAlign="Center" Height="365px"  >
   < asp:UpdatePanel ID = updatepanel runat ="server"  UpdateMode ="Conditional">

Sys.WebForms.PageRequestManagerServerErrorException:在服务器上处理请求时出现未知错误

4 有的说在 < %@Page 的最后加入  ValidateRequest="true",无论真假测试好像不行。
< %@ Page Title="" Language="C#" CodeFile="Login.aspx.cs" Inherits="Login" ValidateRequest="true" %>

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有