Hello,
I created a wizard that will take my user's input and then compile to an excel spreadsheet and export to an email. The problem is the wizard form takes the input but on the page where you need to export the event doesn't fire at all.
**I am using
Bootstrap Application Wizard also**
Here is the code I used (using EPPlus):
private static ExcelWorksheet CreateSheet(ExcelPackage p, string sheetName)
{
p.Workbook.Worksheets.Add(sheetName);
ExcelWorksheet ws = p.Workbook.Worksheets[1];
ws.Name = sheetName; //Setting Sheet's name
ws.Cells.Style.Font.Size = 11; //Default font size for whole sheet
ws.Cells.Style.Font.Name = "Calibri"; //Default Font name for whole sheet
return ws;
}
private static s ...
Go to the complete details ...