Is it possible to load spreadsheet content from an XLS file stored as a BLOB in Azure Storage?
I've gone through the exercise of embedding an XLS file directly in my ASP.NET application
by using an example found here.
RadSpreadsheet1.Provider = new SpreadsheetDocumentProvider(Server.MapPath("~/App_Data/semda.xlsx"));
Also note that I have uploaded the XLS file using the CloudUpload control, works great!
Now I need to figure out how to make the data connection.