vote up 2 vote down star

I have a search box on a page (actually in a partial view though not sure that is relevant) with an Html.TextBox control.

 <%= Html.TextBox("query", ViewData["query"], new { style = "width: 90%;" })%>

The action method takes "query" as a parameter, and I edit this value to clean up the string that is passed in:

public ActionResult SearchQuery(string query) {  

   ViewData["query"] = StringFunctions.ProperCasing(query.Replace("_", " "));

However, when it gets to the Html.TextBox the original query value (in this case with underscores) is preserved. I can see that the edited value is in the ViewData field, so for example, if:

query == "data_entry"

then, after being passed into the action method

ViewData["query"] == "data entry"

but the value, when it reaches the view, in the Html.TextBox is still "data_entry". It seems like there is a collision between the action method parameter "query" and the search box form parameter "query". Anyone know what is going on here or if there is another way to pass the value?

This action method is separate from the action that results from posting the search box data.

flag

20% accept rate

2 Answers

vote up 3 vote down

Html.Textbox helper looks for ModelState first (ASP.NET MVC source, InputExtensions.cs line 183, HtmlHelper.cs line 243). The simplest solution would be removing the ModelState for "query":

public ActionResult SearchQuery(string query)
{
    ViewData["query"] = StringFunctions.ProperCasing(query.Replace("_", " "));

    ModelState.Remove("query");

    return View();
}
link|flag
vote up 0 vote down

Dont know if this is the problem but my first thought is is to pass the view data back in the controller.

public ActionResult SearchQuery(string query) 
{     
  ViewData["query"] = StringFunctions.ProperCasing(query.Replace("_", " "));
  return view(ViewData):
}
link|flag

Your Answer

Get an OpenID
or

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