Tag: 响应文件

错误从服务器收到的消息无法parsing

所以我正在做的是使用epplus创build一个excel文件并保存到response.outputstream 由于某些原因代码打破了给我一个错误。 我不知道我在做什么错。 Using package As New ExcelPackage(newFile) ' add a new worksheet to the empty workbook Dim worksheet As ExcelWorksheet = package.Workbook.Worksheets.Add("Analysis") Dim worksheet2 As ExcelWorksheet = package.Workbook.Worksheets.Add("Data") 'Add the headers worksheet.Cells(1, 2).Value = "Key Performance Indicators" worksheet.Cells(1, 6).Value = MWHtotal & "MW Hours" worksheet.Cells(2, 3).Value = "Before Deslag" worksheet.Cells(2, 4).Value = "After Deslag" […]