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

  • SEARCH
  • Home
  • 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 7838595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T15:09:15+00:00 2026-06-02T15:09:15+00:00

How do I change the gridview selected item background color in Asp.net web applications?

  • 0

How do I change the gridview selected item background color in Asp.net web applications?

  • 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-06-02T15:09:16+00:00Added an answer on June 2, 2026 at 3:09 pm

    You could try calling a javascript function on the onmouseover event. This website has a quick example:

    On the server side:

    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes["onmouseover"] =
                "javascript:mouseovercolor(this);";
            e.Row.Attributes["onmouseout"] =
                "javascript:mouseoutcolor(this);";
        }
    }
    

    On the client side:

    <script language=javascript type="text/javascript">
        function mouseovercolor(mytxt) {
            mytxt.bgColor = 'Orange';
        }
        function mouseoutcolor(mytxt) {
            element.bgColor = 'White';
        }
    </script>
    

    Edited: This site has a nice example on how to make it work with the onClick event:

    Server side:

    protected void GridView1_RowDataBound(Object sender, GridViewRowEventArgs e){
      if (e.Row.RowType == DataControlRowType.DataRow){
        // javascript function to call on row-click event
        e.Row.Attributes.Add("onClick", "javascript:void SelectRow(this);");
      }
     }
    

    Client side:

    <script type="text/javascript">
             // format current row
             function SelectRow(row) {
                 var _selectColor = "#303030";
                 var _normalColor = "#909090";
                 var _selectFontSize = "3em";
                 var _normalFontSize = "2em";
                 // get all data rows - siblings to current
                 var _rows = row.parentNode.childNodes;
                 // deselect all data rows
                 try {
                     for (i = 0; i < _rows.length; i++) {
                         var _firstCell = _rows[i].getElementsByTagName("td")[0];
                         _firstCell.style.color = _normalColor;
                         _firstCell.style.fontSize = _normalFontSize;
                         _firstCell.style.fontWeight = "normal";
                     }
                 }
                 catch (e) { }
                 // select current row (formatting applied to first cell)
                 var _selectedRowFirstCell = row.getElementsByTagName("td")[0];
                 _selectedRowFirstCell.style.color = _selectColor;
                 _selectedRowFirstCell.style.fontSize = _selectFontSize;
                 _selectedRowFirstCell.style.fontWeight = "bold";
             }
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm converting functionality from an asp.net Gridview to a Listview. In the gridview when
I created a GridView in an ASP.NET application and used the Auto Format tool
I have an ASP.NET gridview component which is being filled up with data from
I have an asp.net page with: an UpdatePanel an ObjectDataSource a GridView The update
Hy, I am implementing a asp.net web application, and I have two webform files,
I created an gridview it has favorite button and I want to change the
When Binding a GridView to a DataTable, How can we Change the value displayed
I have a gridview with dropdownlist in it. When the user changes the item
I have a gridview, that shows record according to the selected value in the
Ok so I have a GridView like this: <asp:GridView ID=gv runat=server ... > ...

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.