Password Protected Excel Download using EPPLUS
问题 I am exporting data in Excel form using EPPLUS Excel Library. I want that when excel downloaded it will ask for password. I have tried following code. FileInfo newFile = new FileInfo("sample.xlsx"); using (ExcelPackage package = new ExcelPackage(newFile) { ExcelWorksheet ws = package.Workbook.Worksheets.Add("demo"); ws.Cells[A1].LoadFromDataTable(dataTable, false); package.Workbook.Protection.SetPassword("EPPLUS"); package.Save(); } 回答1: Just need to use the .Save overload with a password as