Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3872076
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T21:53:09+00:00 2026-05-19T21:53:09+00:00

what i want do is to when the user click on Delete button i

  • 0

what i want do is to when the user click on Delete button i want to highlight the entire row and ask for confirmation before it deletes, and the below is my code and iw ant to execute two steps:
1) hightlight the entire row
2) ask the for confirmation.

protected void gvOrg_RowDataBound(object sender, GridViewRowEventArgs e)
{
    Button btnDelete = (Button)e.Row.FindControl("btnDelete");
    if (btnDelete != null)
     { 
          //btnDelete.Attributes.Add("onclick", e.Row.BackColor = System.Drawing.Color.Red);
          btnDelete.Attributes.Add("onclick", String.Format(textForMessage, "Id:  " + DataBinder.Eval(e.Row.DataItem, "Id"), "Name:  " + DataBinder.Eval(e.Row.DataItem, "Name")));
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T21:53:10+00:00Added an answer on May 19, 2026 at 9:53 pm
    protected void gvOrg_RowDataBound(object sender, GridViewRowEventArgs e)
    {
      Button btnDelete = (Button)e.Row.FindControl("btnDelete");
      if (btnDelete != null)
      { 
        btnDelete.Attributes.Add("onclick", 
          String.Format(@"return DeleteRow('{0}',{1});", 
            e.Row.ClientID,e.Row.RowIndex));
      }
    }
    
    //javascript
    function DeleteRow(rowId, rowIdx)
    {
      HighlightRow(rowId, "#FF0000");
      var result = confirm('Are you sure you want to delete this record?');
      if(!result)
        HighlightRow(rowId, rowIdx % 2 ? "#DEEEE9" : "#FFFFFF");
      return result;
    }
    
    function HighlightRow(rowId, color)
    {
      var row = document.getElementById(rowId);    
      row.style.background = color;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When a user clicks on the button delete , I want a dialog box
I want to check when the user double click on applictaion icon that no
I have a delete button on my web site which I want to add
I want to close a System.Windows.Forms.Form if the user clicks anywhere outside it. I've
I want to user Role based security through the authorization section in the web.config
I have a webpage where I want the user to see a new image
if i have a search function for my site and i want the user's
I have a dropdownlist with the autopostback set to true. I want the user
I'm writing a game in Java, and I want the user to be able
I've got two applications I'm developing using Qt on windows. I want the user

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.