I have a search form in an app I'm currently developing, and I would like for it to be the equivalent of method="GET".
Thus, when clicking the search button, the user goes to search.aspx?q=the+query+he+entered
The reason I want this is simply bookmarkable URLs, plus it feels cleaner to do it this way.
I also don't want the viewstate hidden field value appended to the URL either.
The best I could come up with for this is:
- Capture the server-side click event of the button and
Response.Redirect. - Attach a Javascript
onclickhandler to the button that fires awindow.location.replace.
Both feel quirky and sub-optimal... Can you think of a better approach?