如何访问到另一个aspx上的控件Gridveiw
在a.aspx.cs中写
Database_Con();
command.CommandText = "select * from " + MyTreeView.SelectedNode.Value + "'";
dataAdapter.SelectCommand = command;
OleDbDataReader datareader = command.ExecuteReader();
GV.DataSource = datareader;
GV.DataBind();
注意GV在b.aspx中,如何给b.aspx中的GV绑定数据。语句怎么写
------解决方案--------------------建议LZ重新换个思考模式,采用IFRAME或URL传参的方式可以吗
------解决方案--------------------通过A传参到B
在B绑定GV