I'm using VS.NET 2003, Framework 1.1 , window 2000, Mircosoft Office XP.
I download the COM Microsoft.Office.Interop.Excel.DLL from the official Web.
Here is my sample code :
**********************************************************************************************
imports Microsoft.Office.Interop.Excel
Dim excel As Microsoft.Office.Interop.Excel.Application
Dim wb As Microsoft.Office.Interop.Excel.Workbook
excel = New Microsoft.Office.Interop.Excel.Application
wb = excel.Workbooks.Open("c:\\test.xls")
excel.Visible = True
wb.Activate()
*********************************************************************************************
I build in Window base application mean VB.NET is work fine.
But when i Build in Web application ASP.NET
It wont call up the test.xls and the EXCEL.EXE wont neve release.
Please give me a hand please.....
Regards,
Dylan