Hi,
I am developing a website to manipulate excel document.
I was using office Interop to manipulate the files.
In my hosting server my provider does not allow me install office.
So, I am getting the following error:-
"Could not load file or assembly 'Microsoft.Vbe.Interop, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the file specified."
I have office 2010 installed on my development machine.
I was told that if I use ".NET Programmability Support", in my development server, I can overcome this problem. I think ".NET Programmability Support" is installed on my machine.
How can I develop my website using .NET Programmablility Support and will it solve the above error?
Thanks,
Loading
Sam HobbsPosted Oct 28, 2011, 1:14 PM
Alternatively, if you can use Offrice in the client's system then that could work. Or you could process the data somehow without using Excel.
Javeed M ShaikhPosted Oct 28, 2011, 12:51 PM
Other way to achieve this:
use ADO to read and write to Excel, using Microsoft.Jet.OLEDB driver. The drivers for Jet are available in most installations of Windows, just check the version with your provider to start testing.