Passing data between Web Forms

JaronBoom

New Member
I have been using the ReadOnly Property to pass data from one form to another. The problem that I am experiencing is that in my current project I have three forms, and I want to travel between all three and pass one piece of data. With the ReadOnly Property you have to set a reference page. This is a problem because I could have multiple reference pages. I used this article to start (http://aspnet.4guysfromrolla.com/articles/050802-1.2.aspx).<BR><BR>Can anyone help me?<BR><BR>Thanks<BR>Dave BennettWhat is the purpose of passing data to another webform page? The intention of the webform is to post back to itself. If you need a "staged form" where you want a user to fill out your form in stages then you can keep posting back to your self and hide or show seperate parts of the form. To store the data from the different stages you can use registerhiddenfield("fieldname", fielddata) function.
 
Back
Top