Reputation: 45
I have an asp.net form where I ask the user for the location of a video file on his PC. He then clicks the submit button, and at that point I want to upload his video to my Azure storage directly, without first uploading it to my server. (My server is a shared server, and would not allow file uploads in any case).
Is there a way to do this?
Upvotes: 0
Views: 50
Reputation: 24895
Yes, you can do this with the new support for CORS combined with SAS (for security). Guarav wrote a detailed post on his blog: Uploading Large Files in Windows Azure Blob Storage Using Shared Access Signature, HTML, and JavaScript
Upvotes: 2