怎么获取GridView某列里面的值,再把值传到另一个界面的文本框里
1个回答
展开全部
RowDataBound里e.Row.Attributes.Add("onDblClick", "javascript:window.opener.location.href='子窗体B.aspx?id="+e.Row.Cells[1].Text.ToString() + "';window.close();"); e.Row.Attributes.Add("onDblClick", "javascript:window.opener.documentById('txt').value='"+e.Row.Cells[1].Text.ToString() + "';window.close();"); protected void gv_RowUpdating(object sender, GridViewUpdateEventArgs e) { this.gv.EditIndex = e.RowIndex; int id = int.Parse(this.gv.DataKeys[e.RowIndex].Value.ToString()); string str = ((TextBox)this.gvTarget.Rows[e.RowIndex].FindControl("txt")).Text.Trim(); Response.Write("");}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询