What happened to FormCollections from System.Web.Mvc
? In the past I would use something like this string value = data.GetValues(key).FirstOrDefault();
where data is a formcollection. Now when I try to implement a FormCollection it comes from Microsoft.AspNet.Http.Internal
. Which doesnt contain the GetValues method.
I'm currently using beta 8 of MVC.