I'm developing an application wherein the requirement is to upload the file to Azure blob storage. I tried the azure-blob-storage-service plugin which is present in the angular nuget manager.
Can anyone suggest any other approach like uploading it from server side using c#?
Here you can find a good sample on using Angular SPA and web api which allow a user to browse and delete images in an azure storage container as well as uplaod new files.
It also shows how to create web api controller to support the required server side operation
Here is the add method of controller
It creates an instance of the AzureBlobMultipartFormDataStreamProvider, derived from MultipartFormDataStreamProvider to save the files with their original names the derived class rather using computed names.
Hope it helps.
https://code.msdn.microsoft.com/windowsapps/AngularJS-with-Web-API-c05b3511/file/134548/3/AngularJS%20with%20Web%20API%20uploading%20files%20to%20Azure%20storage.zip