Hi,
Say I have an aspx page (page.aspx) and in the page load event I have a code to generate a txt file. Here the sequence of action:
- type the address in the address bar of IE browser (e.g. http://localhost/somesite/page.aspx) --> this will execute the page load event and generate the txt file.
- Delete the generated file above and In the same browser(page), re-type the same url (http://localhost/somesite/page.aspx) --> this will not execute the page load event and of course will not generate the txt file
- Click the refresh button on the browser, now it executes the page load event and generates the txt file.
Can anyone explain what is happening on step #2? is this some sort of page level cache?
thanks