i working on asp.net website , excel integration project. have excel file having lots of macros performs calculation. can pass values of cells , based on macros formula displays output in other cell of excel. need pass parameters asp.net website , display out put of excel on asp.net webform. able implement functionality using following code , working fine on while development. application excel = new application(); excel.displayalerts = false; excel.enableevents = true; //excel.visible = true; workbook wb = excel.workbooks.open(path, 0, false, 5, "", "", true, microsoft.office.interop.excel.xlplatform.xlwindows, "\t", true, false, 0, true, 1, 0); worksheet excelsheet = (worksheet)wb.activesheet; excelsheet.cells[37, 11] = 65; excelsheet.cells[37, 9] = 70; excelsheet.cells[14, 8] = "a"; excelsheet.cells[15, 8] = "b"...