I need to be able to make sure that when the back button on a page is clicked that the first option on a form drop down list is selected even if they selected another list item before hitting the back button any ideas
In the <form you can write autocomplete="off"> that way the browser wont remember what was written or selected last. Is that what you mean ?
That's a bit tricky given the browser usually doesn't reload a page when the back button is selected. Or are you not talking about the browser back button, but a link that says go back? If the latter is the case then just use option selected=selected on the item you want to be the default.
Mention 'no cache' to make the browser refresh the page when the back button is pressed. If you can mention it in the HTTP header, it is better. Else you can use the HTML Meta tags(within the <head> tag) example is given below <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> <META HTTP-EQUIV="EXPIRES" CONTENT="Mon, 22 Jul 2002 11:12:01 GMT"> HTML: