I have an ASP.NET MVC 3 application in which I want to import excel files.
I managed to do this using the linq-to-excel
library. But when I deployed the application on IIS I got an error which turned out to be caused by IIS being running on 64bits system.
This can be solved by enabling the 32-bits applications
option for the pool in IIS.
Will this affect the performance of the application? If yes, is there another alternative to linq-to-excel
that works on 64-bits.