In web application, i am working on update panel, when i place radio button list control in update panel and click on radio button it is showing error like :
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.
My plce the controls like this:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:RadioButtonList ID ="rdbutTrip" runat ="server" Font-Bold="true" RepeatDirection="Horizontal" GroupName="g" AutoPostBack="True" onselectedindexchanged="rdbutTrip_SelectedIndexChanged" >
<asp:ListItem Text="Route Wise Report" Value ="R"></asp:ListItem>
<asp:ListItem Text="Transport Wise Report" Value ="T"></asp:ListItem>
</asp:RadioButtonList>
</ContentTemplate>
</asp:UpdatePanel>
Please help me thank you.
Try placing a ScriptManager control on the page inside tag.