1. <a href = "target. aspx? Param1 = ** & param2 = ** "> link transfer </a>
Receiving page: String STR = request ["param1"]
2. Session sharing
Sending page: Session ("param1") = "**";
String STR = SESSION ("param1"). tostring ();
3. Application Sharing
Sending page: Application ("param1") = "**";
By page: String STR = Application ("param1"). tostring ();
This method is not often used because the application is in an applicationProgramDomain range sharing. All users can change and set their values, so they only apply counters and other places that require global variables.
4. Cookie
5. response. Redirect () method
Response. Redirect ("target. aspx? Param1 = ** & param2 = **")
Receiving page: String STR = request ["param1"]
6. server. Transfer () mode.
Server. Transfer ("target. aspx? Param1 = ** & param2 = **")
Receiving page: String STR = request ["param1"]