Gridview fires unprocessed event RowDeleting

Source: Internet
Author: User

. Aspx
<Asp: TemplateField HeaderText = "delete">
<ItemTemplate>
<Asp: ImageButton ID = "imgBtnDelete" runat = "server"
CommandArgument = '<% # eval_r ("TeacherNum") %>'
CommandName = "del"
ImageUrl = "~ /Delete.gif"
OnClientClick = "javascript: return confirm ('Are you sure you want to delete it? ') "/>
</ItemTemplate>
</Asp: TemplateField>
 
Note the CommandName attribute. When I set it to CommandName = "delete", "RowDeleting" is triggered for unprocessed events in gridview "". Because CommandName = "delete", "unprocessed RowDeleting" is triggered during deletion ".
Just change the name, such as "del ".
 
. Cs


Protected void GridView1_RowCommand (object sender, GridViewCommandEventArgs e)
{
String num = e. CommandArgument. ToString (); Instructor ID
Switch (e. CommandName)
{
Case "del ":
TeacherBLL. DeleteTeacher (num );
Bind ();
Break;
}
}

From Xu Yue's column

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.