protected void dd_RowDataBound(object sender, GridViewRowEventArgs e)
    {
       // if (e.Row.RowType == DataControlRowType.DataRow)
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            //鼠标移动到每项时颜色交替效果
            e.Row.Attributes.Add("OnMouseOut", "this.style.backgroundColor='White';this.style.color='#003399'");
            e.Row.Attributes.Add("OnMouseOver", "this.style.backgroundColor='#6699FF';this.style.color='#8C4510'");

            //单击/双击 事件
            e.Row.Attributes.Add("OnDblClick", "DbClickEvent('" + e.Row.Cells[0].Text + "')");
            // e.Row.Attributes.Add("OnClick", "ClickEvent('" + e.Row.Cells[1].Text + "')");

            //  e.Row.Attributes.Add("OnKeyDown", "GridViewItemKeyDownEvent('" + e.Row.Cells[1].Text + "')");

            //设置悬浮鼠标指针形状为"小手"
            e.Row.Attributes["style"] = "Cursor:hand";
        }
    }

    <script language ="javascript">
      function DbClickEvent(d)
        {
              document.all.btnBindData.value=d;
              document.getElementById("btnBindData").click();        
        }
    </script>

<asp:Button id ="btnBindData" runat ="server" OnClick="btnBindData_Click"/>

posted on 2007-01-23 23:16  ipusr  阅读(235)  评论(0)    收藏  举报