I am using a excel reader to read contents from the excel,

  string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;
                 Data Source=" + filePath + ";Extended Properties=Excel 12.0;";
  System.Data.OleDb.OleDbConnection ExcelConnection 
                 = new System.Data.OleDb.OleDbConnection(connectionString);

I'm working in VS2010 on a windows 7 ultimate x64 installation. it works fine in my local machine when I run with VS. When I upload the website in server I get the following error. What should I do here, I have access to the server. Thanks

The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine. Error

: do I have to install any software in my server

link|improve this question

54% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Yes. Be aware that there will be different versions dependent on whether you are running on 32 or 64 bit architecture.

The providers can be downloaded here:

http://www.microsoft.com/download/en/details.aspx?id=13255

link|improve this answer
10 seconds faster ;-). Good that you mentioned the architecture. – ZombieHunter Dec 6 '11 at 10:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.