protected void Dgd_course_ItemDataBound(object sender, DataGridItemEventArgs e)
        {
            // 鼠标移动行变色
            e.Item.Attributes.Add("onmouseover", "this.style.backgroundColor='#439be6'");
            e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='#FFFFFF'");
           // 某行获取其中的某个字段的数值
            for (int i = 0; i < e.Item.Cells.Count; i++)
            {
                e.Item.Cells[i].Attributes.Add("onclick", "alert('" + e.Item.Cells[2].Text + "');"); // 单击获取
             //   e.Item.Cells[i].Attributes.Add("ondblclick", "alert('" + e.Item.Cells[2].Text + "');");//双击获取
              //  e.Item.Attributes.Add("onclick", "window.open('WebForm2.aspx?ZoneNo=" + e.Item.Cells[1].Text + "')");  

               
            }
        // 鼠标移动行变色
if (e.Item.ItemIndex >= 0)
        {
            e.Item.Attributes["onmouseover"]="this.name=this.style.backgroundColor;this.style.backgroundColor='#CCCCFF';";
            e.Item.Attributes["onmouseout"]="this.style.backgroundColor=this.name;";
        }

posted on 2006-12-09 19:35  ipusr  阅读(524)  评论(0)    收藏  举报