how to Transfer values from one page to another page in asp.net ? is there any latest technique other than state management techniques in asp.net? how? thank you!!!!!
Asked
Active
Viewed 137 times
1
-
did this answer feet your needs ? http://stackoverflow.com/a/5804721/159270 – Aristos Feb 10 '12 at 07:43
2 Answers
2
You have several options when passing data from one page to another:
- Use query string
- Use HttpPost
- Use Session State
- Use Public Properties
- Use Control Info
This sample from the MSDN shows all these in action.

Wouter de Kort
- 39,090
- 12
- 84
- 103
1
Can you please explain what you mean by "other than state management techniques"?
You can use query string as well.
Can you please check Communication between pages for more details.

Community
- 1
- 1

Jigar Pandya
- 6,004
- 2
- 27
- 45