GridView 双击选择行 [ZT]

"Select$"表示进入行的选择状态,也可将其改为"Update$"、"Edit$"等其他事件。
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);
    }
posted @ 2007-10-15 19:21  RobotTech  阅读(381)  评论(0编辑  收藏  举报