Reputation: 65077
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
Reputation: 1038710
You could store the value into the Session
and retrieve it from the second page.
Upvotes: 4