zoukankan      html  css  js  c++  java
  • Gridview中Datakeys 通过主键取得各列的值。(转)

    1. 首先在初始化Gridview时候定义主键的数组。

     GridViewTeacherStudent.DataKeyNames=new string[] {"courseId","studentId","type","level","unit"};

    2. 在进行删除操作,或者对某行进行操作获得列中的值。

     string studentId = GridViewTeacherStudent.DataKeys[e.RowIndex]["studentId"].ToString().Trim();

    3.如果只有单个的键值时候。如只有”StudentId“一个主键下面直接获得。

     string studentId = GridViewTeacherStudent.DataKeys[e.RowIndex].Value.ToString().Trim();

    在 GridView1_RowCommand中获取主键的值:

      protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)

      {

      int OrderId = Convert.ToInt32(GridView1.DataKeys[Convert.ToInt32(e.CommandArgument)].Value); }

      在 GridView1_PageIndexChanging中获取主键的值

      protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)

      {

      int index=GridView1.DataKeys[e.NewPageIndex].Value;

      }

      在 GridView1_RowDeleting中获取主键的值

      protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)

      {

      int index=GridView1.DataKeys[e.RowIndex].Value;

      }

      在 GridView1_RowEditing中获取主键的值

      protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)

      {

      int index = GridView1.DataKeys[e.NewEditIndex].Value;

      }

      在 GridView1_RowUpdating中获取主键的值

      protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)

      {

      int index = GridView1.DataKeys[e.RowIndex].Value;

      }

      在 GridView1_RowDataBound中获取主键的值

      protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)

      {

      int index = GridView1.DataKeys[e.Row.RowIndex].Value;

      }

  • 相关阅读:
    Unity 3(一):简介与示例
    MongoDB以Windows Service运行
    动态SQL中变量赋值
    网站发布IIS后堆栈追踪无法获取出错的行号
    GridView Postback后出错Operation is not valid due to the current state of the object.
    Visual Studio 2010 SP1 在线安装后,找到缓存在本地的临时文件以便下次离线安装
    SQL Server 问题之 排序规则(collation)冲突
    IIS 问题集锦
    linux下安装mysql(ubuntu0.16.04.1)
    apt-get update 系列作用
  • 原文地址:https://www.cnblogs.com/YoungPop-Chen/p/3255600.html
Copyright © 2011-2022 走看看