This one is pretty simple.
I have the following aspx page. All I do is redirect to any other page in reponse to a button click and there is crash deep in the javascript someplace. I am using the RadControls_for_ASP.NET_AJAX_2010_1_309 release.
Here is the text of the error message ( plase note the strange character at the end. That IS part of the message):
I have the following aspx page. All I do is redirect to any other page in reponse to a button click and there is crash deep in the javascript someplace. I am using the RadControls_for_ASP.NET_AJAX_2010_1_309 release.
Here is the text of the error message ( plase note the strange character at the end. That IS part of the message):
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. |
Details: Error parsing near '?'. |
Partial Class Junk0 |
Inherits System.Web.UI.Page |
Protected Sub cmdButton1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdButton1.Click |
Response.Redirect("~/Junk2.aspx") |
End Sub |
End Class |
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Junk0.aspx.vb" Inherits="Junk0" %> |
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title></title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" > |
</telerik:RadScriptManager> |
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
</telerik:RadAjaxManager> |
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="LoadingPanel1"> |
<asp:Label ID="Label3" runat="server" SkinId="None" width="150"/> |
<asp:Button ID="cmdButton1" runat="server" Text="Button" /> |
</telerik:RadAjaxPanel> |
<telerik:RadAjaxLoadingPanel id="LoadingPanel1" runat="server" Width="256px" Height="64px" |
MinDisplayTime="250" InitialDelayTime="250" IsSticky="True"> |
<asp:Label ID="lblProgress" runat="server"/> |
<asp:Label ID="lblProcessing" runat="server"/>Processing ... |
</telerik:RadAjaxLoadingPanel> |
</div> |
</form> |
</body> |
</html> |