GridView在RowCommand事件中获取当前行数据
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
()GridView 在RowCommand事件中获取当前行数据
//获取当前行
GridViewRow gvr = (GridViewRow)((Control)mandSource).Parent.Parent;
//获取当前行中的某一列中的TextBox控件
TextBox txtJobsName = (TextBox)gvr.Cells[2].FindControl("txtJobsName");
第二种方法:页面没有绑定CommandArgument
int index=Convert.ToInt32(mandArgument);
GridViewRow row =GridView1.Rows[index];
----------------------------------------------------------------------------------------------------------------------
第一种方式,取得点击的行号,主键值,某行中指定列的值,如下:
protected void gvProduct_RowCommand(object sender, GridViewCommandEventArgs e)
{
//获取当前点击前的行号,说明:ImageButton因为我放的按钮为ImageButton,用户可以根据放置的控件不同而不同。
int index = ((GridV iewRow)((ImageButton)(mandSource)).Parent.Parent).RowIndex;
//获取当前选点击行的主键值
string key = this.gvProduct.DataKeys[index].V alue.ToString();
//获取当前点击行,某列的值
string id = this.gvProduct.Rows[index].Cells[1].Text;
/*
补充一下,因为我在上面的前台代码中放了CommandArgument='<%# Eval("ProductID") %>',ProductID为数据库中的主键,所以得到主键值也可以如下:string strProductId = mandArgument.ToString();
*/
// 有了上面的操作,以下操作就方便了
if (mandName == "manage")
{
//.......
}
}
第二种方式:
//在前台代码中,不要CommandArgument='<%# Eval("ProductID") %>' 这个代码,即去掉这个,然后,下面操作:
protected void gvProduct_RowCommand(object sender, GridViewCommandEventArgs e) {
if (mandName == "manage")
{
int index = Convert.ToInt32(mandArgument);
string key = this.gvProduct.DataKeys[index].value.toString();
Response.Write(key);
}
}
//行数据绑定
protected void gvProduct_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
ImageButton imgBtn = new ImageButton ();
imgBtn = (ImageButton )e.Row.Cells[6].FindControl("imgBtnManage");//自己清楚,此ImageButton模板列,你放在GridView中的第几列。
imgBtn .CommandArgument = e.Row.RowIndex.ToString();
}
}。