Is it safe to use Excel Interop inside MVC app?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
EPPlus
EPPlus is a .net library that reads and writes Excel 2007/2010 files using the Open Office Xml format (xlsx).
It does not require Excel to be installed on the server. It doesn’t use Excel libraries, it is just an API interface to the Open Office XML format (xlsx). XLSX is actually just a a zip file with a folder structure and xml files inside to describe the layout and data of the spreadsheet.
epplus.codeplex.com. The codeplex site has tons of examples plus here’s an additional blogpost with more.
Just putting this here as an Actual answer.