获取GridView中RowCommand的当前索引行

  • 原文:http://blog.csdn.net/sabty/article/details/4816160
  • 获取GridView中RowCommand的当前索引行 前台添加一模版列,里面添加一个LinkButton
  • 前台 (如果在后台代码中用e.CommandArgument取值的话前台代码就必须在按钮中设置CommandArgument的值,值为绑定的数据库字段
  • <asp:TemplateField HeaderText="操作">
  • <ItemTemplate>
  • <asp:LinkButton ID="LinkButton1" runat="server" CommandName="QianRu"
  • CommandArgument=‘<%# Eval("Id") %>‘>签入</asp:LinkButton>
  • <asp:LinkButton ID="LinkButton2" runat="server" CommandName="QianChu">签出</asp:LinkButton>
  • </ItemTemplate>
  • </asp:TemplateField>
  • 后台
  • 在GridView里已经设置了LinkButton为事件处理按钮,将通过以下方法获取索引
  • protected void gv_Company_RowCommand(object sender, GridViewCommandEventArgs e){
  • if (e.CommandName == "QianRu")
  • {     //取ID的值方法一
  • GridViewRow drv = ((GridViewRow)(((LinkButton)(e.CommandSource)).Parent.Parent)); //此得出的值是表示那行被选中的索引值
  • inf id=Convert.ToInt32(GridView1.DataKeys[drv.RowIndex].Value); //此获取的值为GridView中绑定数据库中的主键值
  • //取ID的值方法二
  • GridViewRow drv = ((GridViewRow)(((LinkButton)(e.CommandSource)).Parent.Parent)); //此得出的值是表示那行被选中的索引值
  • //此获取的值为GridView中绑定数据库中的主键值,取值方法是选中的行中的第一列的值,drv.RowIndex取得是选中行的索引
  • int id = Convert.ToInt32(GridView1.Rows[drv.RowIndex].Cells[0].Text);
  • //取ID的值方法三
  • //因为在客户端中就已经将LinkButton的CommandArgument与主键Id给绑定了所以在此可以直接用e.CommandArgument得出主键ID的值
  • int id = Convert.ToInt32(e.CommandArgument.ToString());
  • }
  • }
  • 还有一种就是我们并不需要知道当前点击的是第几行,可以用以下方法实现要求:
  • <ItemTemplate>
  • <asp:LinkButton ID="LinkButton1" runat="server" CommandArgument=‘ <%# Eval("field1") %>‘
  • CommandName="play" Text=‘ <%# Eval("field2") %>‘> </asp:LinkButton>
  • </ItemTemplate>
  • 上面这个LinkButton,Text绑定了字段2, CommandArgument绑定了字段1
  • 那么,
  • protected  void  GridView1_RowCommand(object  sender,  GridViewCommandEventArgs  e)
  • {
  • if(e.CommandName="play")
  • {
  • LinkButton lb = (LinkButton)e.CommandSource;
  • string  a  =  lb.Text;//这里可以获得点击行字段field2的值
  • string b = e.CommandArgument;//这里可以获得点击行字段field1的值
  • }
  • }
  • 或:
  • 如果是使用模板列,可以把数据的任意一列绑定到按钮的CommandArgument,如下:
  • <asp:TemplateField>
  • <ItemTemplate>
  • <asp:Button runat="server" CommandArgument=‘<%# Eval("id") %>‘ Text="Button" />
  • </ItemTemplate>
  • </asp:TemplateField>
  • 一般可以绑定到主键列,这样可以在RowCommand通过e.CommandArgument获取当前行的主键,也便于进行其他操作
  • 如果是要获取行索引,比较麻烦一点,还是那个Button1,在GridView的RowDataBound事件中如下:
  • Button btn = (Button)e.Row.FindControl("Button1");
  • if (btn != null)
  • {
  • btn.CommandArgument = e.Row.RowIndex.ToString();
  • }
  • 这样就可以在RowCommand中通过 int rowId=Convert.ToInt32(e.CommandArgument.ToString()) 获取行索引了
时间: 2024-11-03 22:21:02

获取GridView中RowCommand的当前索引行的相关文章

GridView中根据CheckBox选中的行取出某列的值

根据CheckBox选中的行取出某列的值: for (int i = 0; i < this.GridView1.Rows.Count; i++) { CheckBox ckb = (CheckBox)this.GridView1.Rows[i].Cells[0].FindControl("CheckBox1"); if (ckb.Checked) { huohao =Convert.ToInt32(this.GridView1.Rows[i].Cells[2].Text); s

点击GridView中TextBox弹出输入对话层,输入内容反传回先前点击的TextBox中(Jquery获取GridView中TextBox的ID)

项目中,由于用户反映说:GridView表中的输入框太小,不方便输入,特别是在输入内容多的时候.问能不能点击GridView中输入框的时候能弹出一个大的内容输入对话框. 介于用户的要求,我就开始修改. 先想到的就是我用Jquery在GridView中TextBox上添加一个focus焦点捕捉事件,当点击时触犯弹出内容输入框. 然后就是当输入完毕的操作了,我又使用内容输入框(其实也是一个TextBox)的焦点失去事件(blur),在该事件中先把值反馈回先前点击的GridView中的那个TextBo

python之enumerate函数:获取列表中每个元素的索引和值

源码举例: 1 def enumerate_fn(): 2 ''' 3 enumerate函数:获取每个元素的索引和值 4 :return:打印每个元素的索引和值 5 ''' 6 list = ['Mike', 'male', '24'] 7 for index, value in enumerate(list): 8 print("索引:" + str(index), ", 值:" + value) 9 10 11 enumerate_fn() 运行结果: 索引:

使用javascript获取gridview中的textbox值

<body> <form id="form1" runat="server"> <div> <asp:gridview ID="GVReue" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1"> <Columns> <asp:T

jquery获取GridView中RadioButton选中的数据

function selectSingleRadio(rbtn) { var radio = document.getElementsByTagName("radio"); var arrAll = document.all; for (i = 0; i < arrAll.length; i++) { if (arrAll[i].type == "radio") { arrAll[i].checked = false; } } rbtn.checked = t

随笔:如何获取GridView中的TextBox中的值

function CheckWamt() { var smat = ""; $('#<%=Txn_gv.ClientID %>').find('input[type=checkbox]').each(function (i) { if ($(this).attr('checked') == 'checked') { smat = $('#MainContent_Txn_gv_txtSAmt_' + i).val(); } }); alert(smat);// }

获取字符串中重复字符的索引

list_all=[] oper_s="abcdaaaa" i_num=0 while(True): x=oper_s.find("a",i_num) print(x) if(not x==-1): i_num=x+1 list_all.append(x) else: break print(list_all) 原文地址:https://www.cnblogs.com/sea-stream/p/10493245.html

如何在asp.net中获取GridView隐藏列的值?

在阅读本文之前,我获取gridview某行某列的值一般做法是这样的:row.Cells[3].Text.ToString().有点傻瓜呵呵 在Asp.net 2.0中增加了一个新的数据绑定控件:GridView,其目的用来取代Asp.net1.x中的DataGrid控件.获取GridView中的某列值的方法为   protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)    {        stri

js获取gridview模板列中textbox行列的值

下面一个例子:在gridview中第一列输入数值,第二列输入数值,点击第三列的时候进行计算 求和,如果不符合标记为红色字体. 如图: 代码 : <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script type="text/javascript"> function