Hi,
I have a similar question like this, only then in ASP.NET MVC. Basically I have this route:
/{Controller}/{Action}/{Id}
I have a HTML form like this:
<form action="/Controller/Action">
<input type="text" name="Id" id="Id" />
<input type="submit" value="Send" />
</form>
The form is created like so:
<% =Html.BeginForm("Action","Controller") %>
How can I have the FORM post or get to:
/Controller/Action/{ValueOfIDInputFieldInForm}
?