Hello
I want to open a Excel file on my local computer.
File is located on Server Computer.
I am using Microsoft Office XP.
I try this code
Excel.Workbook theWorkbook = ExcelObj.Workbooks.Open(
openFileDialog1.FileName, 0, true, 5,
“”, “”, true, Excel.XlPlatform.xlWindows, “\t”, false, false,
0, true);
Excel.Sheets sheets = theWorkbook.Worksheets;
Excel.Worksheet worksheet = (Excel.Worksheet)sheets.get_Item(1);
But it doesn’t Work
So plz Tell me how i open the Excel file by using Asp.Net
Thanks
Vivek