Sessions
-
I want to pass data from one page to another is it correct process using 15 session objects for this process or is there any other way of passing data from one page to another
There are several ways to pass data to another page. -Query string might be an option. -You can have public properties on target page and set it from source page. - Session is always an option but if you need to pass another page then dont need to use this For more details Have a look
Cheers!! Brij Check my latest Article :A walkthrough to Application State
-
I want to pass data from one page to another is it correct process using 15 session objects for this process or is there any other way of passing data from one page to another
you can use querystring, but if your data need to be secured be sure to encrypt the Query String http://himabinduvejella.blogspot.com
Iblog "If you can dream IT, you can become IT"
-
I want to pass data from one page to another is it correct process using 15 session objects for this process or is there any other way of passing data from one page to another
You could always use one object with all your data in it. KeyValuePair Structure[^]
If at first you don't succeed ... post it on The Code Project and Pray.
-
I want to pass data from one page to another is it correct process using 15 session objects for this process or is there any other way of passing data from one page to another
You can do this via Session. But there are many way to do the same. If your data is not sensitive then use query string. if that will be sensitive then encrypt that data and then put it into Query String.
ANAND KUMAR Owner www.csharpmagic.com www.asbrainz.com