Yet another newbie with ASP.NET MVC! All I intend to do is for a search textbox on my page, if I type something and click search, the url to be redirected to should have the following at the end, like in stackoverflow,
/search?q=searchedtext
So here is what I have now,
<input id="searchText" maxlength="100" type="text" name="query" />
<a href="???" class="searchButton">
Search
</a>
I have a function in my controller like this,
public ActionResult Search(string query)
{
}
Here is the route,
routes.MapRoute(
"Search",
"Search",
new { controller = "Posts", action = "Search"}
);
Can anyone fill in the gaps here :). Any comments appreciated.
You need to wrap that client side code in a form:
here is what i did:
Wrap it with form tag, set it's method to "GET", use input type='submit' for submitting form (instead of 'a' tag), name text input as query (already done), accept query as string in parameters (already done), call model from controller to process request, update ViewData.Model, return appropriate view result (partial, if AJAX is used).
If you want to pass query through URL not through query string key/values,
you must specify correct route for that.
I guess that would be something like: