有没有人知道要在新的界面绑定一个上个页面传递过来的值要怎么办啊
就是比如从上个界面(A.ASPX)传过来一个值 2007-12-14要在B.ASPX 的datagrid 中的某一列绑定显示这个值
该怎么办呀
我现在是用现在B.ASPX获取
string flowsnID3 = string.Empty;
flowsnID3 =Request["Qpur_usedate"]!=null?Request["Qpur_usedate"].Trim():"";
然后绑定
DataTable dt = new DataTable();
dt.Columns.Add("需求日期", typeof(string));
。。。。
row[6] = flowsnID3;
dt.Rows.Add(row);//将带有数据的行添加到dt中
this.DataGrid1.DataSource = dt;
this.DataGrid1.DataBind();
可是这样写值绑定不了哦,不知道怎么回事