顶好的小窝

闲时研究些小程序,编编小软件,写点小心得,兴许对你有用,欢迎来坐坐。

导航

鼠标移动,改变datagrid颜色 (转载)

'鼠标移动,改变datagrid颜色 (转载) 
Sub DataGrid1_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
    
         
'---------------------------------------------------
         ' Add the OnMouseOver and OnMouseOut method to the Row of DataGrid
         '---------------------------------------------------
         e.Item.Attributes.Add("onmouseover""this.style.backgroundColor='Silver'")
            e.Item.Attributes.Add(
"onmouseout""this.style.backgroundColor='white'")
    
        
End If
    
    
End Sub

    
    
Sub DataGrid2_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
    
         
'---------------------------------------------------
         ' Add the OnMouseOver and OnMouseOut method a Cell (Column) of DataGrid
         '---------------------------------------------------
         e.Item.Cells(1).Attributes.Add("onmouseover""this.style.backgroundColor='#DDEEFF'")
            e.Item.Cells(
1).Attributes.Add("onmouseout""this.style.backgroundColor='white'")
    
         
'---------------------------------------------------
         ' Change the Mouse Cursor of a particular Cell (Column) of DataGrid
         ' (Or you may do it for a whole Row of DataGrid :)
         '---------------------------------------------------
         e.Item.Cells(3).Style("cursor"= "hand"
    
         
'---------------------------------------------------
         ' Add the OnClick Alert MessageBox to a particular Cell (Column) of DataGrid
         '---------------------------------------------------
         e.Item.Cells(3).Attributes.Add("onclick""alert('You click at ID: " & e.Item.Cells(0).Text & "!');")
    
        
End If
    
End Sub
 

posted on 2004-12-08 15:43  顶好  阅读(298)  评论(0)    收藏  举报