I\'m developing an ASP.Net MVC 4 app and I\'m using Azure Blob to store the images that my users are going to upload. I have the following code:
var storag
Mine was a stupid naming problem! Apparently we are not allowed to use uppercase in the names.
I've just changed this:
CloudBlobContainer container = blobClient.GetContainerReference("MyContainer");
container.CreateIfNotExists();
To
CloudBlobContainer container = blobClient.GetContainerReference("mycontainer");
container.CreateIfNotExists();