I am working on a web application. I have a grid that shows data to the user. When a user clicks on any grid line, he redirects the user to another page, since we have an asp link control in the column. Problems
My code is like
if (!Page.IsPostBack)
{
}
When the user presses the BROWSER BACK button, he does not execute the CODE. Just show the data from CACHE. How can I execute the CODE, click on the browser button?
source
share