GridView如何选中一行后跳转到另一个页面并把选中这一行的信息传到这张页面中,我用的是GridView自带的选择
3个回答
展开全部
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string v1=e.Row.Cells[0].Text; //第一个字段值
string v2=e.Row.Cells[1].Text;
string v3=e.Row.Cells[2].Text;
string v4=e.Row.Cells[3].Text;
string value=v1+"$"+v2+"$"+v3+"$"+v4
e.Row.Attributes.Add("onclick", "window.location.href=跳转页面地址?value='" + value.Trim() + "'"); //value组织成你的行信息
}
}
在跳转后的页面分解你的value参数值进行split("$"),等到这一行的所有信息
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string v1=e.Row.Cells[0].Text; //第一个字段值
string v2=e.Row.Cells[1].Text;
string v3=e.Row.Cells[2].Text;
string v4=e.Row.Cells[3].Text;
string value=v1+"$"+v2+"$"+v3+"$"+v4
e.Row.Attributes.Add("onclick", "window.location.href=跳转页面地址?value='" + value.Trim() + "'"); //value组织成你的行信息
}
}
在跳转后的页面分解你的value参数值进行split("$"),等到这一行的所有信息
展开全部
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", "window.location.href='页面地址'");
}
}
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", "window.location.href='页面地址'");
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-05-11
展开全部
怎么又是这问题,难道是同班的?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询