I am currently building a website and want the owner to be able to upload photos for his products and have been able to figure almost everything out on the windows azure help page. However I am trying to use the following code
public void Upload(IEnumerable<HttpPostedFileBase> file)
{
//code goes here
}
But the HttpPostedFileBase uses System.Web.Abstractions, however when I try to use that
using System.Web;
using System.Web.Abstractions;
It won't let me call System.Web.Abstractions, I have looked online and have found this solution https://stackoverflow.com/a/1911158/2558743 but I don't completely understand what they are saying. Can anyone explain it better / help me? Thanks in advance