コードビハインド ファイルで UpDetail.update() を使用すると、更新パネルが更新されません。
<asp:UpdatePanel ID="UpDetail" runat="server" RenderMode="Inline" UpdateMode="Conditional">
<ContentTemplate>
<asp:Label ID="AAAA" runat="server"> LOL </asp:Label>
<asp:Label ID="Label1" runat="server"> <%= DateTime.Now.ToString() %> </asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
そして私のcsファイルで:
protected void GvGestionnaires_SelectionChanged(object sender, EventArgs e)
{
AAAA.Text = "TOTO";
UpDetail.Update();
}
イベント GvGestionnaires_SelectionChanged は機能していますが、パネルが更新されません。なぜですか?
編集 :
dx:gridview の代わりにボタンを使用しようとしましたが、うまくいきました..なぜですか? ! :o – user1594914 ただ今編集
解決済み:
EnableCallBacks="False" を dx:gridview に追加します
<dx:ASPxGridView runat="server" ID="GvGestionnaires" KeyFieldName="id" DataSourceID="LinqDataSource" EnableCallBacks="False"
OnSelectionChanged="GvGestionnaires_SelectionChanged"
OnPageIndexChanged="GvGestionnaires_PageIndexChanged">