store gridview id
store gridview id in variable and use that variable in entire page without using gridview ID
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Siva SankarPosted Apr 29, 2015, 7:19 AM
To store your gridview id or any re-usable info,we go for Sessions.
like, Session["GridId"]=your Grid id;
Then you can access your id as follows...
string xxxx=Session["GridId"].Tostring();