asp.net, 如何设置gridview选中行字体颜色?
在gridview中,
SelectedRowStyle CssClass="css1"
css1中设置: color: Blue;
不起作用。

解决方案 »

  1.   

    你试着用属性生成器先进行选中行的设置,再看看是什么属性,注意你的css1是否正确并引用。
      

  2.   

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default4.aspx.cs" Inherits="Default4" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>无标题页</title>
    </head>
    <script language="javascript">
    function yourfunction(obj){
                 for(var i=0;i<22;i++)
                 {
                     document.getElementById(i).style.backgroundColor="#400000";
                 }
                 document.getElementById(obj).style.backgroundColor="red";              
            }    
    function yourfunction2(obj){
                  alert(obj);            
            } 
    </script>
    <body>
        <form runat="server">
        <div>
            <asp:GridView runat="server" AutoGenerateColumns="False" DataKeyNames="au_id"
                DataSourceID="SqlDataSource1"  OnRowCreated="GridView1_RowDataBound" EnableSortingAndPagingCallbacks="True" >
                <Columns>
                    <asp:BoundField DataField="au_id" HeaderText="au_id" ReadOnly="True" SortExpression="au_id" />
                    <asp:BoundField DataField="au_lname" HeaderText="au_lname" SortExpression="au_lname" />
                    <asp:BoundField DataField="au_fname" HeaderText="au_fname" SortExpression="au_fname" />
                    <asp:BoundField DataField="phone" HeaderText="phone" SortExpression="phone" />
                    <asp:BoundField DataField="address" HeaderText="address" SortExpression="address" />
                    <asp:BoundField DataField="city" HeaderText="city" SortExpression="city" />
                    <asp:BoundField DataField="state" HeaderText="state" SortExpression="state" />
                    <asp:BoundField DataField="zip" HeaderText="zip" SortExpression="zip" />
                    <asp:CheckBoxField DataField="contract" HeaderText="contract" SortExpression="contract" />
                </Columns>
                <SelectedRowStyle BackColor="#400000" BorderStyle="Double" />
            </asp:GridView>
            <asp:SqlDataSource runat="server" ConnectionString="<%$ ConnectionStrings:pubsConnectionString %>"
                SelectCommand="SELECT * FROM [authors]"></asp:SqlDataSource>
        
        </div>
        </form>
    </body>
    </html>
    后台using System;
    using System.Data;
    using System.Configuration;
    using System.Collections;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;public partial class Default4 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            this.GridView1.SelectedIndex = 0;
        }
        protected   void   GridView1_RowDataBound(object   sender,   GridViewRowEventArgs   e)
        { 
            if (e.Row.RowType == DataControlRowType.DataRow) 
            { 
                for (int i = 0; i <= GridView1.Rows.Count; i++) 
                {
                    e.Row.Attributes.Add("onclick", "yourfunction(" +i+ ");");
                    e.Row.Attributes.Add("id",""+i+"");
                    e.Row.Attributes.Add("ondblclick", "yourfunction2(" + i + ");");
                } 
            } 
        } 
      
    }
    window.onload = function(){
                var grid = document.getElementById("GridView1").children[0].children;
                for(var i=1;i<grid.length;i++){
                    grid[i].style.cursor="pointer";
                    grid[i].onclick=function(){
                        for(var i=1;i<grid.length;i++){
                            grid[i].style.backgroundColor="white";
                        }
                        this.style.backgroundColor="red";
                    }
                }
            }
      

  3.   


        protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                e.Row.Attributes.Add("style", "cursor:pointer;");           // 将光标设为手形
                // 当鼠标放上去的时候 先保存当前行的背景颜色 并给附一颜色
                e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='pink',this.style.fontWeight='';");
                // 当鼠标离开的时候 将背景颜色还原的以前的颜色
                e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
                e.Row.Attributes.Add("OnClick", "ClickEvent('" + e.Row.Cells[1].Text + "')");
            }
        }