1

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!!!!!

2 Answers2

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