I want to pass additional data back to the MVC controller, without changing my ViewModel.
Is there a way to do this without using the formcollection?
For example, something like:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit(ViewModel item, formvalue a)
{
}