born2program
Technical User
How do you use a excel com object in vb.net behind a asp.net page. I have tried using the following code but is not successful. I basically need to be able to write to a spreadsheet cell by cell from a dataset (not just push a whole datagrid out to excel). Any help is appreciated. Thanks.
Code:
Dim xl As Excel.Application
Dim book As Workbook
Dim sheet As Worksheet
xl = CreateObject("Excel.Application")
xl.Visible = True