Is there a nice linqy way of splitting a FormCollection into a Dictionary that contains only those keys that start wi
FormCollection
Dictionary
[HttpPost] public ActionResult Index(FormCollection collection) { Dictionary form = new Dictionary(); collection.CopyTo(form); return View(); }