Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC: Form Input to pretty URLs

I have a URL:

Shipment/Search/{searchType}/{searchValue}

and a controller action:

// ShipmentSearchType is an enum ... PartNumber, CustomerOrder, etc...
ActionResult Search(ShipmentSearchType searchType, string searchValue)

So this means I can type in pretty urls like:

Shipment/Search/PartNumber/Widget-01

And get a list of all the shipments with that part number.

Now I'm doing the busy work of the application and got to the point where I am making a search form that asks for Part Number and it will post back to Search. So basically I want:

Shipment/Search/PartNumber/{user-input-from-textbox}

Unfortunately I can't have a form get to the above url -- it has to be generated server side. So instead I'll have the form post back to Shipment/Search/PartNumber with {user-input} as a post request value.

So I end up with:

[AcceptVerbs(HttpVerbs.Post)]
ActionResult Search(ShipmentSearchType searchType, string searchValue, bool? post)
{
    return RedirectToAction("Search", new { searchType = searchType, searchValue = searchValue});
}

2 things:

1) Is there a way I can get around having the post method of Search without using javascript on the client side?

2) The bool? post value is there just so they have different signatures. That is obviously ugly. Is there a smarter way to do this?

Thanks!

edit:

"Unfortunately I don't think I can do that from a form (without javascript at least)." & "Is there a way I can get around having the post without using javascript?"

This was a bit ambiguous. What I mean is that I don't think I can have a form generate the url /Shipment/Search/PartNumber/{value-from-textbox} and have it to a form method get. I think this would be simple to do in javascript (override the submit action to build the url dynamically) but I haven't done that. I didn't mean that javascript is necessary to do a post.

like image 676
anonymous Avatar asked Nov 25 '25 06:11

anonymous


1 Answers

i have same situation, but it work fine without javascript, i just receive FormCollections in [post]Search and then redirect to action like this:

[AcceptVerbs(HttpVerbs.Post)]
ActionResult Search(FormCollection form)
{    return RedirectToAction("Search", new { searchType = form["searchType"], searchValue = form["searchValue"]}); }

I think it is a good solution because i watched video about Post-Redirect-Get pattern which - good practicies in asp.net mvc applications.

like image 182
Maksim Kondratyuk Avatar answered Nov 26 '25 23:11

Maksim Kondratyuk



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!