Asp. NET to add a Delete prompt box for the GridView method _ Practical Tips

Source: Internet
Author: User

The example in this article describes the method for adding a Delete prompt box to the GridView in ASP.net. Share to everyone for your reference. The specific analysis is as follows:

In the GridView we can simply add a commandfield delete column to delete a row of information. However, in order to avoid misoperation caused by the deletion of the deletion, the operator to remove the operator to confirm, after the deletion.

First we add a template column to our GridView, as follows:

The following is a reference fragment:

<asp:templatefield headertext= "Delete" showheader= "False" > 
<itemstyle forecolor= "Red"/> 
< itemtemplate> 
<asp:linkbutton id= "Btndelete" runat= "Server" causesvalidation= "False" Commandname= "Delete " 
text=" Delete "></asp:LinkButton> 
</ItemTemplate> 
</asp:TemplateField>

Next we add to the template column we added: onclientclick= "return confirm (' Confirm that you want to delete this message?"). '), as follows:

The following is a reference fragment:

<asp:templatefield headertext= "Delete" showheader= "False" > 
<itemstyle forecolor= "Red"/> 
< itemtemplate> 
<asp:linkbutton id= "Btndelete" runat= "Server" causesvalidation= "False" Commandname= "Delete " 
text=" delete "onclientclick=" return confirm (' Confirm that you want to delete this row information? ') ' ></asp:LinkButton> 
</ItemTemplate> 
</asp:TemplateField>

I hope this article will help you with the ASP.net program design.

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.