How to pass any value to one page to another page?

Hello friends,
I make a simple project in Asp.NET. Tell me how i can pass any value one page to another page.

With a querystring just like you would any language. GET or POST methods

I use master page than where i use get or post method because which page i want to use access the value not have form so i can’t able to use get or post method.

Another method would be to save that value as a session variable. Grab the value using your C# code, write the value to a session variable, then handle it on your next page and rewrite the variable to be empty and to immediately expire.

Try This Link

http://stackoverflow.com/questions/13739661/how-to-pass-the-value-for-one-aspx-to-another-aspx-page

sheik
<snip>