Input type Submit?

D

dotnet_coder

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");
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top