Passing more values
ASP.NET
4
Posts
4
Posters
0
Views
1
Watching
-
how do i pass 50-60 values from one page to another .. Anuja
-
how do i pass 50-60 values from one page to another .. Anuja
Hi, You can do Server.Transfer to the next page. So that you can get the instance of the parent page in the context and access all the values. Hope this helps...
-
how do i pass 50-60 values from one page to another .. Anuja
What about the simple Page.aspx?Option1=value1&Option2=value2&(...)
-
how do i pass 50-60 values from one page to another .. Anuja
Just to build on the other [great] suggestions that were offered above... You could also push your data into the
Session
object, or into a database and retrieve it from the new page. Hope that keeps the ball rolling on ideas. :) --Jesse