I'm using ASP.NET adn have the following code in my view:

<% using(Html.BeginForm("Search", "Home", FormMethod.Get)) { %>

<%= Html.TextBox("searchText") %>
<input type="submit" value="Search" />

<% } %>

and in my controller I have:

    public ActionResult Search(string searchText)
    {
       return View("Index");
    }

If I have a breakpoint in the Search-action and examine the searchText argument it's always "" even if I type some text in the texbox. If I change the formmethod to POST it works as expected.

How can I read "searchText" when using http-GET?

Edit:

I had the following route

       routes.MapRoute(
            "Search",                                              // Route name
            "Search/{searchText}",                           // URL with parameters
            new { controller = "Home", action = "Search", searchText ="" }  // Parameter defaults
        );

and when I removed the default value of searchText(searchValue=""), then I got the correct value in my action. Why?

link|improve this question

53% accept rate
Do you have some nondefault routing setup in global.asax? Also check the source of the generated page in your browser. – PanJanek Dec 9 '09 at 14:39
I have set up the following route: routes.MapRoute( "Search", // Route name "Search/{searchText}", // URL with parameters new { controller = "Home", action = "Search", searchText ="" } // Parameter defaults ); – Erik Z Dec 9 '09 at 14:51
feedback

1 Answer

Use Firebug or Fiddler to look at the actual URI. You have a "searchText" part of your route, and I'm betting you have a "searchText" query string parameter, too.

To make searchText part of the path portion of the URI, you would need to use JavaScript to rewrite the URI for the form, because HTML forms don't know about your MVC routing. On the other hand, HTML forms do query string parameters "out of the box", and MVC will bind them to action arguments without even including them in the route.

The easiest solution is to remove searchText from your route altogether and just use the query string parameter. You don't need to do anything but change the route to make this work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.