鼠標移到GridView某一行時改變該行的背景色方法二

鼠標移到GridView某一行時改變該行的背景色方法二: 效果圖: 做法:和上面的一樣就是代碼不同 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { //int i; ////執行循環,保證每條數據都可以更新 // for (i = 0; i < GridView1.Rows.Count; i++) // { // 首先判斷是否是數據行 // if (e.Row.RowType == DataControlRowType.DataRow) //    { //        //當鼠標停留時更改背景色 //e.Row.Attributes.Add("onmouseover","c=this.style.backgroundColor; this.style.backgroundColor='#00A9FF'"); //當鼠標移開時還原背景色 //        e.Row.Attributes.Add("onmouseout","this.style.backgroundColor=c"); //    } //} //如果是綁定數據行 if (e.Row.RowType == DataControlRowType.DataRow) { //鼠標經過時,行背景色變 e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#E6F5FA'"); //鼠標移出時,行背景色變 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#FFFFFF'"); } } 9.GridView實現自動編號: 效果圖: 實現方法: 雙擊GridView的  OnRowDataBound  事件;在後臺的GridView1_RowDataBound()方法添加代碼,最後代碼如下所示: protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)   //如果是綁定數據行 //清清月兒http://blog.csdn.net/21aspnet  if (e.Row.RowType == DataControlRowType.DataRow) { ////鼠標經過時,行背景色變 //e.Row.Attributes.Add("onmouseover","this.style.backgroundColor='#E6F5FA'"); ////鼠標移出時,行背景色變 //e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#FFFFFF'"); ////當有編輯列時,避免出錯,要加的RowState判斷 //if (e.Row.RowState == DataControlRowState.Normal||e.Row.RowState == DataControlRowState.Alternate) //{ //    ((LinkButton)e.Row.Cells[6].Controls[0]).Attributes.Add("onclick", "javascript:return confirm('你確認要刪除:/"" + e.Row.Cells[1].Text + "/"嗎?')"); //} } if (e.Row.RowIndex != -1) { int id = e.Row.RowIndex + 1; e.Row.Cells[0].Text = id.ToString(); } }   注意這時最好把前臺的第一列的表頭該爲“編號”,因爲以前的第一列被“吃掉”了。 <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="3" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating" OnRowCancelingEdit="GridView1_RowCancelingEdit" BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px" Font-Size="12px" OnRowDataBound="GridView1_RowDataBound"> <FooterStyle BackColor="White" ForeColor="#000066" /> <Columns> <asp:BoundField DataField="身份證號碼" HeaderText="編號" ReadOnly="True" /> <asp:BoundField DataField="姓名" HeaderText="用戶姓名" /> <asp:BoundField DataField="員工性別" HeaderText="性別" /> <asp:BoundField DataField="家庭住址" HeaderText="家庭住址" /> <asp:CommandField HeaderText="選擇" ShowSelectButton="True" /> <asp:CommandField HeaderText="編輯" ShowEditButton="True" /> <asp:CommandField HeaderText="刪除" ShowDeleteButton="True" /> </Columns> <RowStyle ForeColor="#000066" /> <SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" /> <PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" /> <HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" /> </asp:GridView>  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章