user1468537
user1468537

Reputation: 703

asp.net excel plugin

What is the easiest way to save content to excel from .net pages? I know there are a few packages on NUget but which is the easiest/best to work with?

I only need simple text so I know I can do .csv no problem but I need extra control over formatting such as make the text bold, italic, underlined, change cell colour which I do not believe it is possible to do via CSV.

Upvotes: 2

Views: 340

Answers (2)

Stuart
Stuart

Reputation: 12215

NPOI is good for adding formatting. Open source

http://npoi.codeplex.com/

Upvotes: 0

mrd
mrd

Reputation: 2183

Try EPPlus open source .net library that reads and writes Excel 2007/2010 files using the Open Office Xml format (xlsx).

Upvotes: 1

Related Questions