Not exactly sure what you are asking, but any linkbutton on a gridview
that generates a postback will execute the RowCommand event. You can
tell it's a delete command like the following.
protected void GridView1_RowCommand(object sender,
System.Web.UI.WebControls.GridViewCommandEventArgs e)
{
if (e.CommandName.ToLower().Equals("delete"))
{
}
}
Let me know more details about what you want to know and I'll try to
help.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.