HI, i have data Table which is dynamically created and is bind to grid View and the page have a button which is redirecting user on another page when is clicked. That's page one.Now when user is redirected on page 2, and if he want to get back on page 1, I want to be present the data Table there in page load.Please help!
keep dataTable present through page navigating
Collapse
X
-
If the user hits the back button in the browser a cached version of the page will be displayed...
Which means your grid should be displayed.
If the user clicks a button in the webpage and your site redirects them back to the page, shouldn't the grid still be populated because you dynamically create it?
Unless the contents were changed somehow???
I'm not sure what the problem is?
Have you ever considered storing data source for the grid into Session or Cache?
-FrinnyLast edited by Frinavale; Jan 22 '15, 02:25 PM.
Comment