重写render,利用ClientScript,在客户端注册select,回发到服务器,触发服务器端的行选择事件。
01 protected override void Render(HtmlTextWriter writer)
02 {
03 foreach (GridViewRow row in gvHeader.Rows)
04 {
05 if (row.RowType == DataControlRowType.DataRow)
06 {
07 row.Attributes[“onclick”] = ClientScript.GetPostBackEventReference(gvHeader, “Select$” + row.RowIndex.ToString(), true);
08
09
10 row.Attributes[“style”] = “cursor:pointer”;
11 row.Attributes[“title”] = “单击选择行”;
12
13 }
14 }
15 base.Render(writer);
16 }
—-想了解更多的linux相关异常处理怎么解决关注<计算机技术网(www.ctvol.com)!!>
本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。
ctvol管理联系方式QQ:251552304
本文章地址:https://www.ctvol.com/uncategorized/54514.html