.xlsx read without installed ms office2007 on server.
any other way to read xlsx file without office driver
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
NebojaPosted Jul 16, 2014, 5:16 AM
Hi Digamber, here is another way you can try, just add this .NET DLL for workbooks (Excel files).
It is pretty easy to use it, for example here is how you would read excel workbooks in C# code behind:
Suthish NairPosted Jun 17, 2011, 2:53 PM
Download from here and install the drivers..
Digamber PatilPosted Jun 17, 2011, 9:41 AM
The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine.
Suthish NairPosted Jun 17, 2011, 9:34 AM
using (OleDbConnection obj = new OleDbConnection())
{
obj.ConnectionString = "---";
obj.Open();
using (DataTable dt = obj.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null))
{
}
}
http://www.connectionstrings.com/excel
Digamber PatilPosted Jun 17, 2011, 9:28 AM
(MY config is Win7 Enterprise, ASP.net 3.5 )
Suthish NairPosted Jun 17, 2011, 7:45 AM
Inserting & Retrieving records from M.S.Excel-2007 using oledb in C#.net
http://www.c-sharpcorner.com/UploadFile/e628d9/4038/
Digamber PatilPosted Jun 17, 2011, 6:16 AM
Can you give me a sample code for that so i can implement that one.
Suthish NairPosted Jun 17, 2011, 6:01 AM