datagrid中实现改变某行的背景色,点击任一列能实现超连接

private void datagrid1_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
        
{
            
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
            
{
                e.Item.Attributes[
"onmouseover"]="this.name=this.style.backgroundColor;this.style.backgroundColor='yellow';"
                e.Item.Attributes[
"onclick"]="window.open('***.aspx?id=" + e.Item.Cells[0].Text + "','newwin','')";
            }

        }

posted on 2005-03-12 22:53  黎宇  阅读(404)  评论(0编辑  收藏  举报

导航