i want to pass a string value from one page to another.Also i have some text boxes and the values entered in it needs to be passed to a new page.How do i do it?
I have a string S
String S = Editor1.Content.ToString();
i want to pass value in string S onto a new page i.e Default2.aspx how can i do this in ASP.net C#
You can achieve it using
Sessionor byQueryStringBy Session
In your first page:
Then in your next page access the session using:
–
By QueryString
In your first page:
In your second page: