Friday, March 16, 2012

Passing a variable to another page

How can I navigate to another page via a button, and pass a variable to this
next page...
How can I do this via that method that I see in other sites that the url
goes like this:
http://www.google.com.br/search?hl=pt-BR
[]s...Look up the concept of querystrings
Regards
John Timney
ASP.NET MVP
Microsoft Regional Director
"Ricardo" <r_luceac@.hotmail.com> wrote in message
news:%23IPFidjDFHA.2632@.TK2MSFTNGP12.phx.gbl...
> How can I navigate to another page via a button, and pass a variable to
this
> next page...
> How can I do this via that method that I see in other sites that the url
> goes like this:
> http://www.google.com.br/search?hl=pt-BR
>
> []s...
>
Here's a nice, simple way to pass values from one page to another:
(VB.NET code)
'Add data to the context object before transferring
Context.Items("myParameter") = x
Server.Transfer("WebForm2.aspx")
Then, in WebForm2.aspx:
'Grab data from the context property
Dim x as Integer = CType(Context.Items("myParameter"),Integer)
Of course there are a number of ways to pass values from one page to
another, such as using the querystring, cookies, session,
context, saving to a temporary table in the database between each page, etc.
You'll have to decide which technique is best for your application.
Here are several good articles on the subject to help you decide.
http://msdn.microsoft.com/msdnmag/i...te/default.aspx
http://www.aspalliance.com/kenc/passval.aspx
http://www.dotnetbips.com/displayarticle.aspx?id=79
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Ricardo" <r_luceac@.hotmail.com> wrote in message
news:%23IPFidjDFHA.2632@.TK2MSFTNGP12.phx.gbl...
> How can I navigate to another page via a button, and pass a variable to
> this
> next page...
> How can I do this via that method that I see in other sites that the url
> goes like this:
> http://www.google.com.br/search?hl=pt-BR
>
> []s...
>

0 comments:

Post a Comment