Tagged Questions
1
vote
2answers
2k views
MVC2: How can I read control values for an action link?
I'm passing in some model information to an ActionLink, but I'd also like to provide the action with the values of some inputs on the page. For example, if I had something like this:
<input ...
0
votes
2answers
2k views
How to get formcollection using ajax.actionlink
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 ...