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.