|
Regarding the problem of value transfer across web pages:
If you use Response.redirect ("a.aspx? Id = 123");
Request.QueryString ["id"];
Method, id = 123 will be displayed in the address bar.
How can I pass it without displaying it? I heard that there is a Request.Form method? In this case, how to write a Response? |
|