asp.netvb.nethidden-variables

Passing Hidden Variables in Vb.net


I want to pass a few variables to another page. Currently I'm using response.redirect and passing the variables in the url. I'm not really interested in using Session Variables. Is there a way to pass hidden variables in .NET to a completely different form?


Solution

  • (You can also use Server.Transfer() and not lose the Request.Form data.)