GRIDVIEW单击双击事件
Posted qiu18359243869
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单击双击事件的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Asp.net c# 中为 GridView 行启用双击和单击