Posted on: 12/10/2013 8:20:21 PM | Views : 901

I know that I cvan persist data across aspx pages by using either querystring or session variable.
Due to the confidential nature of data, I cannot use querystring and I have several fields that I want to persist, so session variable may not be practical.
The question is can I use a list object to do that?
I have three screens worth of data that would be either inserted or modified in the back-end DB.
The navigation is from one page to the next when all the fields on the former page are validated. But I want to persist some of the data, so that I can use that to make decisions on what to show or not the next page and so on. 
How do I persist the list object across pages to do that? Would it be initialized each time I instantiate as new? THat is my concern.

Thanks.

Go to the complete details ...