How to add and delete a prompt box for the GridView in ASP. NET

Source: Internet
Author: User

How to add and delete a prompt box for the GridView in ASP. NET

In the GridView, we can directly add a CommandField deletion column to delete a row. However, in order to avoid accidental deletion due to misoperations, the operator is asked to confirm the deletion before deletion.

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

The following is a reference clip:

1

2

3

4

5

6

7

<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 OnClientClick = "return confirm ('Are you sure you want to delete this row? ') ", As follows:

The following is a reference clip:

1

2

3

4

5

6

7

<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 ('Are you sure you want to Delete this row information? ') "> </Asp: LinkButton>

</ItemTemplate>

</Asp: TemplateField>

I hope this article will help you design your asp.net program.

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.