[求助]传递参数,如何显示内容?
数据库中有一个表News
ID Title Content
1 你好! 大家好!
在WebForm1.aspx中有DataGrid1,将News表内容显示其中,并且设定Title列为超链接列,传递参数为ID.
现在我想让它在当我点击"你好!"时,在WebForm2.aspx的Label1中显示"大家好!"
我用的不是设定类的方法。
我的方法如下,不知道能否行得通,请指教:
sqlConnection1.Open ();
string sql="select * from TABLE1 where ID=?
sqlCommand1=new SqlCommand(sql, sqlConnection1);
SqlDataReader reader=sqlCommand1.ExecuteReader ();
Label1.Text =?.tostring;
(?的地方代码不会写,并且已经将sqlConnection1和sqlCommand1通过手动设置好了)