我的更新潘內爾不更新,當我在我的代碼隱藏文件中使用UpDetail.update()我的UpdatePanel不更新。當我使用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和它的工作。爲什麼? ! :○ - user1594914剛纔編輯
解決:
添加EnableCallBacks = 「假」 給我的DX:gridview的
<dx:ASPxGridView runat="server" ID="GvGestionnaires" KeyFieldName="id" DataSourceID="LinqDataSource" EnableCallBacks="False"
OnSelectionChanged="GvGestionnaires_SelectionChanged"
OnPageIndexChanged="GvGestionnaires_PageIndexChanged">
嘗試將「LOL」作爲值添加到「文本」屬性 – 2012-08-13 09:35:32
我已經這麼做了,但它不能解決我的問題。 – user1594914 2012-08-13 09:39:15
用新建議更新了我的回答。 – bUKaneer 2012-08-13 10:18:16