GridView 行单击或双击事件绑定
Posted 空明流光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GridView 行单击或双击事件绑定相关的知识,希望对你有一定的参考价值。
protected void gvTeacherTaskList_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "ShowDetail") { } } protected void gvTeacherTaskList_DataBound(object sender, EventArgs e) { foreach (GridViewRow row in gvTeacherTaskList.Rows) { var btnShowDetail = row.FindControl("btnShowDetail") as Button; row.Attributes.Add("ondblclick", ClientScript.GetPostBackEventReference(btnShowDetail, null)); } }
以上是关于GridView 行单击或双击事件绑定的主要内容,如果未能解决你的问题,请参考以下文章