過去2日間、奇妙な問題に直面しています。UpdatePanel 内で使用すると、グリッドビューの rowcommand イベントが 2 回発生します。更新パネルの外で使用する場合。期待どおりに動作します。誰でもこの問題を解決する方法を教えてもらえますか?
私のサンプルコードは以下の通りです: ASPX
<asp:UpdatePanel ID="upDescription2" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigge`enter code here`r ControlID="ddlDescription1" EventName="SelectedIndexChanged" />
</Triggers>
<ContentTemplate>
<asp:DropDownList ID="ddlDescription2" runat="server" Width="70%" AutoPostBack="True" OnSelectedIndexChanged="ddlDescription2_SelectedIndexChanged">
</asp:DropDownList>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdatePanel ID="upGrdView" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="ddlDescription2" EventName="SelectedIndexChanged" />
</Triggers>
<ContentTemplate>
<asp:GridView ID="grdView" runat="server" CssClass="grd" AutoGenerateColumns="False"
OnRowCommand="grdView_RowCommand" OnRowDataBound="grdView_RowDataBound">
<Columns>
<asp:ImageButton ID="btnRemove" runat="server" CommandName="remove"/>
Blah Column
Blah Column
Blah Column
Blah Column
</Columns>
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>
C#:
protected void ddlDescription2_SelectedIndexChanged(object sender, EventArgs e)
{
BindGrid();
}
protected void grdView_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName.Equals("Remove"))
{
RemoveRow(e.CommandArgument);
}
}
よろしく ウスマン・ハリド