I have developed ASP.NET application, and I used for uploading materials to my local pc following code:
filename = Path.GetFileName(FileUpload1.FileName);
FileUpload1.SaveAs(Server.MapPath("~/uploadfile/") + filename);
Label1.Text = "Upload status: File uploaded!";
Now, I want this to upload on Azure and what I need is to change this code to suit uploading to my azure website. I have made storage there, but I don't know how should I code it. I have tried searching on google, but documentation is at least to say, horrible and very confusing. Any help is appreciated.
Thanks in advance.