本文介绍了单击模板按钮后如何获取行索引?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
先生
我已经在Web窗体的网格视图"中使用了模板按钮,并且我想在用户单击模板按钮时检索行索引.我怎样才能做到这一点 ?先生,请帮帮我..
提前查看...
Sir
I have taken a template button in Grid View of a web form and i want to retrieve the row index when a user click on the template button. How can i do that ? Please help me sir ..
thakns in advance...
推荐答案
protected void cmd_transfer(object sender, GridViewCommandEventArgs e)
{
int index = Convert.ToInt32(e.CommandArgument);
GridViewRow row = GridView1.Rows[index];
ViewState["fileno"] = row.Cells[2].Text;
this.modal1.Show();
}
//On row command event
int rindex=e.rowIndex
最好的
All the Best
protected void grd_RowCommand(object sender, GridViewCommandEventArgs e)
{
int index = grd.PageIndex * grd.PageSize + Convert.ToInt32(e.CommandArgument);
}
这里的命令参数就像
Here command argument is like
CommandArgument=''<%#Container.DisplayIndex%>''
希望它能工作
Hope it will work
这篇关于单击模板按钮后如何获取行索引?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!