zoukankan      html  css  js  c++  java
  • 重写render,利用ClientScript,在客户端注册select,回发到服务器,触发服务器端的行选择事件。

    View Code 原文地址 http://edu.cnzz.cn/NewsInfo/28278.aspx#
     1     //重写render,利用ClientScript,在客户端注册select,回发到服务器,触发服务器端的行选择事件。
     2   protected override void Render(HtmlTextWriter writer)
     3     {
     4         foreach (GridViewRow row in GridView1.Rows)
     5         {
     6            if (row.RowType == DataControlRowType.DataRow)
     7            {
     8              row.Attributes["onclick"= ClientScript.GetPostBackEventReference(GridView1, "Select$" + row.RowIndex.ToString(), true);
     9                row.Attributes["style"= "cursor:pointer";
    10                row.Attributes["title"= "单击选择行";
    11            }
    12         }
    13         base.Render(writer);
    14     }
  • 相关阅读:
    Linux 内核开发—内核简单介绍
    strcmp函数和strcpy函数
    POJ 3734
    怎样使用SetTimer MFC 够具体
    java 递归函数
    海量数据存储
    使用WinINet和WinHTTP实现Http訪问
    getline函数
    UDP编程
    数据文件传输通道技术解决方式
  • 原文地址:https://www.cnblogs.com/prolion/p/2085297.html
Copyright © 2011-2022 走看看