I have wasted lot of time in searching and finding the simplest way to detect a page refresh and when the user press F5 button on his browser.
I have seen most of the samples provided on net but none of them could satisfy my needs.
I will explain in a simple step way to understand my issue:
I am trying to use
sessionsand loading some images and storing them to folder.Next I have a button to process some operations on images.(Here I have a postback where I am trying to detect postback and savng them to the same folder.)
Now here comes my issue now whenever user tried to
refreshhis pagemanuallyor by clickingF5buton on his browser I need to load all the images again from the folder.
So I need the simplest solution to detect this.
Can anyone help me out with this?
Here is my code:
If Page.IsPostBack Then
//Here I am checking if the session is there or not.If it is already there I am adding images.
Else
//Here I am creating a new session and adding images.
