码迷,mamicode.com
首页 > 其他好文 > 详细

GridView 行单击或双击事件绑定

时间:2016-12-15 14:08:43      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:span   and   idv   .com   nts   lis   send   事件绑定   for   

        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 行单击或双击事件绑定

标签:span   and   idv   .com   nts   lis   send   事件绑定   for   

原文地址:http://www.cnblogs.com/nanfei/p/6182659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!