I am developing one web application. In that i want to use variable’s value in page. One way is to store that variable value in ViewState and use its value in page.
But is there any other way to use Variable’s value through out the page.
I am developing one web application. In that i want to use variable’s value
Share
a global scopped variable
but this thing will not keep the value across postbacks.
Session variable ( Available not only in currect page, but thru out the user session)
Session values be there across postbacks