vote up 4 vote down star
1

Hi,

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?

flag

42% accept rate

2 Answers

vote up 3 vote down check

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|flag
vote up 3 vote down

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

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

Your Answer

Get an OpenID
or

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