How can I do <form method="get"> in ASP.Net for a search form? - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T22:22:01Zhttp://stackoverflow.com/feeds/question/319413http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/319413/how-can-i-do-form-methodget-in-asp-net-for-a-search-form2How can I do <form method="get"> in ASP.Net for a search form?Daniel Magliola2008-11-26T01:00:18Z2009-09-25T05:04:50Z
<p>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".<br />
Thus, when clicking the search button, the user goes to search.aspx?q=the+query+he+entered</p>
<p>The reason I want this is simply bookmarkeable URLs, plus it feels cleaner to do it this way.<br />
I obviously don't want all the viewstate crap hidden fields appended to the URL either.</p>
<p>The best I could come up with for this is:<br />
a) either capture the server-side click event of the button and Response.Redirect<br />
b) Attach a Javascript onclick handler to the button, and to window.location.replace</p>
<p>Both feel quirky and sub-optimal...
Can you think of a better approach?</p>
<p><hr /></p>
<p>I'm guessing this is one solid answer to my previous question: <a href="http://stackoverflow.com/questions/46031/why-does-the-aspnet-web-forms-model-suck">Why does the ASp.Net Web Forms model suck?</a></p>
http://stackoverflow.com/questions/319413/how-can-i-do-form-methodget-in-asp-net-for-a-search-form/319454#3194542Answer by seanb for How can I do <form method="get"> in ASP.Net for a search form?seanb2008-11-26T01:15:00Z2008-11-26T01:15:00Z<p>Use a plain old html form, not a server side form (runat=server), and you should indeed be able to make it work. </p>
<p>This could however be a problem if you have an out of the box visual studio master page which wraps the entire page in a server side form, because you can't nest forms. </p>
<p>Web forms don't have to suck, but the default implementations often do. You don't have to use web forms for everything. Sometimes plain old post/get and process request code will do just fine.</p>
http://stackoverflow.com/questions/319413/how-can-i-do-form-methodget-in-asp-net-for-a-search-form/319645#3196450Answer by tvanfosson for How can I do <form method="get"> in ASP.Net for a search form?tvanfosson2008-11-26T03:12:16Z2008-11-26T03:12:16Z<p>I would do (b) since (a) would require two round trips for a single query. Alternatively, you could disable viewstate on the page, remove any other hidden fields via javascript, and also use javascript to modify the form method from post to get. I've never done this for real, but my toy page using the included sample worked like a charm. It's arguably easier than encoding the search string and doing the get via javascript.</p>
<p>Actually, it sounds like you would be happier with ASP.NET MVC since this is easily doable there by simply setting the form method to GET in the view.</p>
<p>sample code using jquery</p>
<pre><code> $(document).ready( function() {
$('input[type=hidden]').remove();
$('form').attr('method','get');
});
</code></pre>
<p><strong>EDIT:</strong> It seems like you ought to be able to do the same thing server-side, too. Maybe in OnPreRenderComplete. Don't have access to Visual Studio right now to check.</p>
http://stackoverflow.com/questions/319413/how-can-i-do-form-methodget-in-asp-net-for-a-search-form/319667#3196670Answer by cbp for How can I do <form method="get"> in ASP.Net for a search form?cbp2008-11-26T03:28:21Z2008-11-26T03:28:21Z<p>I have always used Response.Redirect as it "works".</p>
<p>I don't think there is an optimal method.</p>
http://stackoverflow.com/questions/319413/how-can-i-do-form-methodget-in-asp-net-for-a-search-form/1475529#14755290Answer by Michhes for How can I do <form method="get"> in ASP.Net for a search form?Michhes2009-09-25T05:04:50Z2009-09-25T05:04:50Z<p>Not quite perfect in terms of the ASP.NET query string bits but:</p>
<pre><code>form1.Method = "GET";
form1.Action = "http://www.google.com";
</code></pre>