I have an ASP page that takes two arguments on the querystring. On the page is a form that posts back to itself.
If I do the form post once, and then try to refresh the page, it doesn’t repost the form. It loads the page as though it were loading for the first time, missing the querystring values.
Is there a way to ALWAYS force a repost when I refresh a page that is the result of a FORM post?
The problem was that I was going into the Firefox address bar and pressing Enter. This caused the URL to reload (and of course it didn’t have the querystring after it reposted). So — lesson is to do a check of the incoming vars and form vars to see if the page has been manually refreshed I suppose…