G
Guest
How can I stop an event handler from executing? For example, I my Gridview
RowEditing event handler looks like this:
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
int I = 0;
}
How can I stop execution of GridView1_RowEditing(...) so that the only thing
that runs when GridView1_RowEditing is invoked is the simple instruction with
the int?
Thanks.
RowEditing event handler looks like this:
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
int I = 0;
}
How can I stop execution of GridView1_RowEditing(...) so that the only thing
that runs when GridView1_RowEditing is invoked is the simple instruction with
the int?
Thanks.