Input type Submit?

  • Thread starter Thread starter magic kat
  • Start date Start date
There are several ways to do this. One way is, put a ASP.NET Button
control on your page and then in the click event you could create
sessions and assign the parameters to the sessions. Then you would
response.redirect to the new page and check for the sessions.

Here is example code for the button click event (in C#):

--------
Session["MyParam1"] = "Hello";
Session["MyParam2"] = "World";

Response.Redirect("p.asp");
 
Back
Top