I've got some dynamically created drop downs without submit buttons which are used to search my property database. I'm using the javascript onChange="JavaScript:form.submit()" to change the page when they click on the option. However, if the user goes BACK to the page then they cannot select the same option without refreshing the page. Is there any way of refreshing the page when the user returns to it? I've tried meta refresh but it continually refreshes.I was thinking possibly a cookie? Any ideas?
Pete Jones
don't use the "POST" method on the submits. use "GET" and all will be well.
if it isn't, tell us what you mean by refresh. is another window appearing asking the user to refresh/cancel?
I'm using GET but the problem is that I'm using an OnChange function. When the user returns to the page. The option they have selected is still selected. Therefore they cannot return to the page they have returned from (I think!) because there is nochange. The only way to select the same option is to reset the page. How do I do this?
Pete