Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing form fields from page to page

Status
Not open for further replies.

Jaheel22

Technical User
Jul 14, 2004
84
US
I'm new to ASP.NET. Here is my question.

Page A is data entry form and calls page B.
Page B is preview page for A and calls page C.
Page C does the data insertion into database.

How to pass form fields from Page A to Page C ?
I'm able to acess these fields on Page B using PreviousPage property.
But not sure how to pass them on from page B to page C ?

Should i use classic HTML input fields with hidden attributes ?

Thanks a bunch.
 
You don't need to use hidden variables. You can use the querystring variables, sessions, or caching.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top