up vote 13 down vote favorite
3
share [g+] share [fb]

In ASP.NET MVC I'm using the HTML helper

Html.BeginForm("ActionName", "Controller", FormMetod.Post);

But I need to post to: /controller/action/23434

How do I pass in the ID?

link|improve this question

55% accept rate
feedback

3 Answers

up vote 20 down vote accepted

Matt's should work fine. If you are still passing in FormMethod.Post, though, you need to do it like this:

Html.BeginForm("action","controller", new { Id = 12345 }, FormMethod.Post);

Reversing the third and fourth parameters will result in the Id being treated as an attribute instead of a route value.

link|improve this answer
feedback

Jon, are you saying that placing the new{@id="Id"} as the last parameter is the way to go or that inversing it from there? At any rate, I had to build my html.beginform this way for it to compile w/out errors:

Html.BeginForm("action","controller", FormMethod.Post, new {@id="Id"});

if I placed the new{@id="Id"} before the Post method it would throw an error.

link|improve this answer
This should be a comment, not an answer – awrigley Jun 30 '11 at 11:18
This is the only solution that worked for me also, I'm on MVC3 – Greg R Sep 26 '11 at 0:48
feedback

Html.BeginForm("action", "controller", new {Id = 12345})

link|improve this answer
1  
that doesn't work, it adds an attribute to the form tag. – mrblah May 18 '09 at 15:40
4  
check the parameter name routeValues - make sure you are using that one not htmlAttributes. – Matt Hinze May 18 '09 at 15:44
feedback

Your Answer

 
or
required, but never shown

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