Hi,
We are considering aspose.cells for one of our below requirement.
We have a excel file and we want to display in browser in read only mode. So we noticed Aspose.cells can convert excel into html and then we can show converted html file in browser. Below is the process that we can follow/coding steps :
1) read/download excel file from azure blob storage,
2) using Aspose.cells convert that excel file (from step 1) into html and store that html file on somewhere (folder in website).
3) Then convert that generated html file (from step 2) into stream and upload same on azure blob storage.
Limitation in above process is, one of the folder in our website should have write permission to saved converted (refer step 2) html file.
Question to Aspose.Cells experts:
Is there a possibility we can simply read excel file and convert excel file into html in somewhere memory (may be in memory stream) instead of disk or folder and then upload that stream to azure blob? By converting excel into html in memory will help us to avoid to give write permission to any folder in our website.
Ultimately target that we want to achieve:
Read excel file and convert to html and upload converted html file to azure blob.
Please note in our project azure blob can upload file as a stream/FileStream.
Please suggest any preferred approach to achieve same.
Thanks