I have a controller with the codes like this:

[AcceptVerbs("POST")]
public ActionResult Create(FormCollection collection)
{
    //why is that the collection is null?
}

I am calling this action using the ajax.actionlink.

my problem is the collection is null, unlike if i use the submit(input) button the formcollection has values.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

FormCollection has a default binder associated with it which always initializes the collection and you should never get null. It is more likely that you have an empty collection when using Ajax.ActionLink in contrast to when using a form submit button. This is because the ActionLink method doesn't POST any form values when it performs the AJAX request.

link|improve this answer
feedback

You need to use Ajax.BeginForm try this link to get more information link text

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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