Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I create a form to send data about new message:

<% using (Html.BeginForm()) { %>                            

    <%= Html.TextAreaFor(m => m.Message.Text) %>

    <input type="submit" />

<% } %>

I can't receive the message class in the controller:

[HttpPost]
public ActionResult NewMessage(Message message) // will not work, message is null

Instead I have to use the model class that's passed to the view and then get the child class from it

[HttpPost]
public ActionResult NewMessage(NewMessageModel model) {
    Message message = model.Message;

And only after that I can do validation stuff.

Is there a way to pass a certain object to the controller?

share|improve this question

1 Answer

up vote 1 down vote accepted
public ActionResult NewMessage([Bind(Prefix="Message")]Message message)
share|improve this answer
Thanks! It works – Alex Sep 22 '10 at 12:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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