Analytics

2012年4月24日 星期二

[ASP.NET]解決 ToolkitScriptManager引起The status code returned from the server was: 500錯誤(Solve ToolkitScriptManager cause The status code returned from the server was: 500 Error)


問題
Microsoft JScript 執行階段錯誤: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500




解決方法
原ToolkitScriptManager如下:
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"
    EnableScriptGlobalization="True" >
</asp:ToolkitScriptManager>
加上EnablePartialRendering="false"如下:
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"
EnableScriptGlobalization="True" EnablePartialRendering="false">
</asp:ToolkitScriptManager>

沒有留言:

熱門文章