0

asp .net の ItemTemplate のイベント ハンドラーを削除したいと考えています。ここにaspコードがあります

 <ItemTemplate>
            <asp:RadioButton runat="server" ID="rdbAnswer"  GroupName="Group"  AutoPostBack="True" 
        OnCheckedChanged="rdbAnswer_CheckedChanged" />
        </ItemTemplate>

コードビハインドのcheckedchangedイベントを削除したい。これどうやってするの ?

4

1 に答える 1

3

-=イベント ハンドラーを削除するために使用します。あなたはそれを行うことができますRowCreated

protected void gridView1_RowCreated(Object sender, GridViewRowEventArgs e)
{
    if(e.Row.RowType == DataControlRowType.DataRow)
    {
        RadioButton rdbAnswer = (RadioButton)e.Row.FindControl("rdbAnswer");
        if(YourCondition)
        {
            // Remove event handler
            rdbAnswer.CheckedChanged -= new EventHandler(rdbAnswer_CheckedChanged);
            // maybe you also want to set rdbAnswer.AutoPostBack="false" to prevent the postback
        }
    }
}

RowCreatedイベント ハンドラーを登録することを忘れないでください。

<asp:GridView ID="gridView1" OnRowCreated="gridView1_RowCreated" runat="server">
于 2012-10-25T08:09:59.693 に答える