001
001

Reputation: 65077

Passing values between web pages

I need to pass a dollar amount from one webpageto another webpage without letting the user modify the values when the values are passed between these pages. ie Page 1 (entry page) to Page 2 (confirmation page)

What is the best way to do this?

Upvotes: 0

Views: 519

Answers (2)

Anil Namde
Anil Namde

Reputation: 6608

You can also try on view state if the data is not so critical.

Upvotes: 0

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

You could store the value into the Session and retrieve it from the second page.

Upvotes: 4

Related Questions