c# Excel Export

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to export some data onto excel from my aspx page using c# code.

However, when I say xlApp = new Excel.Application,

the .Application is not listed from my intellisense popup.

Any idea why?

However I could do all these sucessfully:

Excel._Application xlApp
Excel._Workbook xlWBook;
Excel._Worksheet xlSheet1;
Excel.Sheets xlSheets;
 
Back
Top