、私は更新パネル内のラジオボタンリストコントロールを配置し、ラジオボタンをクリックしたとき、それはのようなエラーを示している、更新パネルに取り組んでいます:asp.netのpanlを更新しますか? Webアプリケーションで
: 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.
マイPLCEこのようなコントロールを
<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>
ありがとうございました。
マスターページにマスターページを使用しています。スクリプトマネージャーのMr. Rahul –
ブラウザ側でスクリプトをダウンロードしているかどうかを確認することをおすすめします。私はコードを試し、OnSelectedIndexChanged = "rdbutTrip_SelectedIndexChanged"を削除しました。すべてが期待どおりに機能します。そのイベントであなたは何を書いていますか? –
selectedindexイベントで私はラベルコントロールを無効にしようとしています –