I would like to have my form do a Get rather than a Post (It's a query field the user is submitting)
I know I can do it with
<% using(Html.BeginForm(action, controller, FormMethod.Get) {%>
However, I would rather not have to specify the action/Controller and there doesn't seem to be an overload that takes FormMethod only.
This is MVC 1.0 (and without the futures)