如何使用queryString将值从一个asp.net页面传递到另一个asp.net网页。这意味着test1.aspx和test2.aspx是两个网页。
在 test1.aspx 中,我有字符串值,
string abc="stackoverflow";
如果我这样使用
Request.Redirect("test2.aspx?numbers=" + abc); .它不会工作。如果我这样使用,我无法在 test2.aspx 页面中获得 abc 值。
how to get this abc values into the test2.aspx?