I have web application contain more than one page. I need to guarantee when I click Back in browser it execute the page-load event because in last page when I click bake it bring the previous page but it doesn’t execute page load and that cause problems. I appreciate any help
|
|
|
|
|
|
|
When using the back button the browser displays a cached version of your page. It does not send a new request to your server. This is why your Page_Load is not firing. You may want to take a look at HttpCachePolicy.SetCacheability that allows you to control caching. |
||||
|
|
|
I suspect you need to ensure the page is not cached in the brower. An HTTP header such as
should achieve that. Although different web browsers may implement this differently, and it is possible a user's settings may override the HTTP header directives. (This is speculation, I have not tested this) Coding your app in such a way as to not rely on the page load event would be much better. |
||
|
|
