asp.net mvc 3 - 64 bits alternatives to linq to excel -
i have asp.net mvc 3 application in want import excel files.
i managed using linq-to-excel
library. when deployed application on iis got error turned out caused iis being running on 64bits system.
this can solved enabling 32-bits applications
option pool in iis.
will affect performance of application? if yes, there alternative linq-to-excel
works on 64-bits.
https://code.google.com/p/linqtoexcel/wiki/usinglinqtoexcel
x64 support
if want linqtoexcel run in 64 bit application, make sure use 64 bit version of library.
you need make sure have 64 bit version of access database engine installed on computer.
and make sure manually set databaseengine property databaseengine.ace
var excel = new excelqueryfactory("excelfilename"); excel.databaseengine = databaseengine.ace;
Comments
Post a Comment