Click here to Skip to main content
Licence CPOL
First Posted 22 Jan 2009
Views 55,756
Bookmarked 24 times

ASP.NET GridView delete confirmation using asp:CommandField

By Lasse Seten | 22 Jan 2009
ASP.NET GridView delete confirmation using asp:CommandField with LINQ to SQL.
 
Part of The SQL Zone sponsored by
See Also

1

2
2 votes, 33.3%
3

4
4 votes, 66.7%
5
3.91/5 - 6 votes
μ 3.91, σa 1.92 [?]

Introduction

There are a few articles out there that already that deals with how to get a JavaScript delete confirmation up in a GridView, I know..., but none of them were exactly what I was after. My method can be used when Updates and Deletes are automatically handled by an asp:LinqDataSource control. You will need your own LINQ DataContext class for your database, and I guess the same principle can be applied to other data source classes too.

Implementation

First, you will need a GridView control that gets its data from a LinqDataSource. Make sure you specify the OnRowDataBound attribute and use the LinqDataSource with delete enabled.

<asp:GridView ID="GridView1" runat="server" PageSize="10" AllowPaging="True" 
    AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="RecordID" 
    DataSourceID="MyDataSource" OnRowDataBound="GridView_RowDataBound">
    <Columns>
        <asp:BoundField DataField="Code" HeaderText="Code" SortExpression="Code" 
                ItemStyle-Width="100px" />
        <asp:BoundField DataField="Description" HeaderText="Description" 
                SortExpression="Description" ItemStyle-Width="560px" 
                ControlStyle-Width="560px" />
        <asp:CommandField HeaderImageUrl="..\Images\DeleteImg.png" ShowDeleteButton="True" 
                DeleteImageUrl="..\Images\DeleteImg.png" DeleteText="Delete Record" 
                ItemStyle-Font-Size="8pt" ItemStyle-Width="30px" ButtonType="Image">
        </asp:CommandField>
    </Columns>
</asp:GridView>
<asp:LinqDataSource ID="MyDataSource" runat="server" 
    ContextTypeName="MyNameSpace.MyDbDataContext" 
    EnableUpdate="true" EnableDelete="true" TableName="MyTable">
</asp:LinqDataSource>

Except for the OnRowDataBound, this control should now work with delete functionality without writing a single line of code.

The next step is to implement the GridView_RowDataBound function which looks like this:

protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        // loop all data rows
        foreach (DataControlFieldCell cell in e.Row.Cells)
        {
           // check all cells in one row
           foreach (Control control in cell.Controls)
           {
                // Must use LinkButton here instead of ImageButton
                // if you are having Links (not images) as the command button.
                ImageButton button = control as ImageButton;
                if (button != null && button.CommandName == "Delete")
                    // Add delete confirmation
                    button.OnClientClick = "if (!confirm('Are you sure " + 
                           "you want to delete this record?')) return;";
            }
        }
    }
}

The important bit here is to use exactly the OnClientClick content provided (except the wording in the message, of course). If you, for example, instead, had "return confirm('Are you sure you want to delete the record')" like many others have suggested, this would mean the Delete command would never be posted back to the server. The actual onclick function call generated/rendered by ASP.NET - if you follow the code supplied above - will be something like this...

onclick="if (!confirm('Are you sure you want to delete this record?')) return;
javascript:__doPostBack('ctl00$cphMain$GridView1','Delete$9')"

You can see that the JavaScript you provide is appended with the postback call from ASP.NET. If you return in your JavaScript prematurely, the postback will never be triggered.

Note: I used images for my command buttons in my GridView. Remember to cast to the LinkButton class instead of the ImageButton class if you use text-links for command buttons.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Lasse Seten



Australia Australia

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberArmando de la Torre20:14 13 Oct '11  
QuestionYou need to some change for make it useful. See it.... PinmemberMd. Touhidul Alam Shuvo21:51 2 Oct '11  
GeneralThanks PinmemberRoy Oliver10:10 22 Nov '10  
Generalmonth name displayed in hindi Pinmemberjaya_k_t0:13 30 Sep '09  
Generalit is working perfect with sqldatasource with slight change PinmemberPrabakaran_0823:20 22 Jul '09  
Generalcancel is not working on confirmation Pinmemberjignesh prajapati0:38 7 Apr '09  
GeneralRe: cancel is not working on confirmation PinmemberMember 28277314:29 29 Apr '09  
GeneralNice PinmemberPeter Mills7:37 20 Feb '09  
Generalsomething is wrong Pinmembercarlos david3:23 12 Feb '09  
GeneralRe: something is wrong PinmemberLasse Seten22:57 14 Feb '09  
GeneralRe: something is wrong Pinmembercarlos david20:09 16 Feb '09  
GeneralRe: something is wrong Pinmembercarlos david20:23 16 Feb '09  
GeneralLittle Optimization Pinmembersalvorapi0:00 23 Jan '09  
GeneralRe: Little Optimization Pinmember-Dr_X-7:22 27 Jan '09  
QuestionWill it work for SqlDataSource ? PinmemberMember 447707518:59 22 Jan '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120209.1 | Last Updated 22 Jan 2009
Article Copyright 2009 by Lasse Seten
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid