GridView 双击选择行

来源:互联网 发布:hbm显存 知乎 编辑:程序博客网 时间:2024/05/17 04:10

protected override void Render(HtmlTextWriter writer)
    {
        
foreach (GridViewRow Row in GridView1.Rows)
        {
            
if (Row.RowType == DataControlRowType.DataRow)
            {
                Row.Attributes[
"ondblclick"= ClientScript.GetPostBackEventReference(GridView1, "Select$" + Row.RowIndex.ToString(), true);
                Row.Attributes[
"style"= "cursor:pointer";
                Row.Attributes[
"title"= "双击选择行";
            }
        }
        
base.Render(writer);
    }

 

 

"Select$"表示进入行的选择状态,也可将其改为"Update$"、"Edit$"等其他事件。