In my application i had text box field in 2nd page and the text box value must be navigate between another two pages and it should retrieve the data from the database and display the matching result .
how i can do this one i need your help please help me
Loading
Francis SusaimichaelPosted Mar 17, 2015, 10:34 PM
For this case, you can go with Session variables.
Page1.aspx.cs:
Session["YourTextBoxValue"]= textbox1.Text();
Page2.aspx.cs:
String strSessionValue = Session["YourTextBoxValue"];