• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp.net获得数据控件事件索引并获取其中值总结
    复制代码 代码如下:

    1、RowCommad
    //获得索引
    int index = ((GridViewRow)(((Button)(e.CommandSource)).Parent.Parent)).RowIndex;

    2、RowEditing等
    //获得索引
    int index = e.NewEditIndex;
    //获取当前GridViewRow对象
    GridViewRow editGridViewRow = autoGridView.Rows[girdviewEditIndex];

    //获取内容方法一 row中有控件Label
    Label girdviewTitleLabel = editGridViewRow.Cells[0].FindControl("titleLabel") as Label;
    string gridViewContent = girdviewTitleLabel.Text;
    //获取内容方法二 row中有无控件Label
    //string gridViewContent = editGridViewRow.Cells[0].Text;

    3、RowDeleting等
    //获得索引
    int index=e.RowIndex ;
    //获取当前GridViewRow对象
    GridViewRow gvr=autoGridView.Rows[index];
    //取得当前行第二个单元格中的文字
    string str = gvr.Cells[1].Text;
    您可能感兴趣的文章:
    • asp.net连接数据库读取数据示例分享
    • asp.net 通用的连接数据库实例代码
    • asp.net连接数据库 增加,修改,删除,查询代码
    • ASP.Net Post方式获取数据流的一种简单写法
    • ASP.NET中操作SQL数据库(连接字符串的配置及获取)
    • asp.net获取SQL所有数据库名、所有表名、所有字段名
    • ASP.NET连接数据库并获取数据方法总结
    上一篇:SQL通用存储过程分页,支持多表联合
    下一篇:asp.net中关于dropdwonlist无法获得值问题
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    asp.net获得数据控件事件索引并获取其中值总结 asp.net,获得,数据,控件,事件,