0

I have a task to export the html data to excel using C#. I have converted the data into JSON object and how to create a excel from the Custom object.I have a custom object as Employee which has properties as Name,Address and Salary.

Can any one help me regarding this ?

Hemant Kumar
  • 4,593
  • 9
  • 56
  • 95

1 Answers1

1

There are many approaches that you could take.

  1. You could use Excel Interop.

  2. You could use open XML SDK.

Personally I would go with the second approach, since it does not require MS Excel to be installed.

cvraman
  • 1,687
  • 1
  • 12
  • 18