• GRID颜色交替。。。。。


    <asp:datagrid id="MyDataGrid" runat="server" onitemdatabound="myDataGrid_ItemDataBound" 
     Public Sub myDataGrid_ItemDataBound(ByVal sender As ObjectByVal e As System.Web.UI.WebControls.DataGridItemEventArgs)
            
    If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
                
    '颜色交替   
                e.Item.Attributes.Add("onmouseover""this.style.backgroundColor='#C0C0FF'")
                
    If e.Item.ItemType = ListItemType.Item Then
                    e.Item.Attributes.Add(
    "onmouseout""this.style.backgroundColor='#ffffff'")
                
    End If

                
    If e.Item.ItemType = ListItemType.AlternatingItem Then
                    e.Item.Attributes.Add(
    "onmouseout""this.style.backgroundColor='seashell'")
                
    End If
            
    End If
        
    End Sub
     'DataGrid1_ItemDataBound 
  • 相关阅读:
    ios lazying load
    ios 单例模式
    ios 消息推送原理
    C#图片闪烁
    C#使窗体不显示在任务栏
    实时监测鼠标是否按下和鼠标坐标
    winfrom窗体的透明度
    C#获取屏幕的宽度和高度
    HDU 5171 GTY's birthday gift 矩阵快速幂
    HDU 5170 GTY's math problem 水题
  • 原文地址:https://www.cnblogs.com/LCX/p/51733.html
Copyright © 2020-2023  润新知