I am working with MS Excel files in my web application built in Azure environment. I never run into following error when I am trying to access the excel file on my developme
I also faced the same issue today. I am using Standard plan of Azure and access to deployment server is through Azure Web portal. I am not using Azure VM because it is a costlier option.
One of my colleagues suggested to use OpenSDK, using which I ultimately could do Excel manipulation without using OleDb drivers.
Some of the resources which helped me to accomplish what I wanted are these:
Please make sure open sdk dll is copied to local. In my case, it was referencing the dll installed in my computer in program files. So when I uploaded to Azure, it gave a dll missing error. I had copy the dll separately to the bin folder. I think if we try nuget option of referencing the dll then this issue would not show up, 've not tried it myself though.
Hope this helps someone who is looking for an alternative to Oledb, in case where installation of the dll on the server is not possible.