欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

為GridView的行添加鼠標經(jīng)過、點擊事件的小例子

 更新時間:2013年11月06日 16:45:44   作者:  
這篇文章介紹了GridView的行添加鼠標經(jīng)過、點擊事件的小例子,有需要的朋友可以參考一下
復制代碼 代碼如下:

   protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#95B8FF'");
        e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
        e.Row.Attributes["style"] = "Cursor:hand";
        int count = GridView1.Rows.Count;
        string ID = "";
        for (int i = 0; i < count; i++)
        {
            ID = GridView1.DataKeys[i].Value.ToString();
            GridView1.Rows[i].Attributes.Add("onclick", "newwin=window.open('default3.aspx?ID=" + ID + "','newwin','width=500,height=550')");
        }
    }       

相關文章

最新評論