我有一个 aspx 页面,它返回一个包含以下代码的 pdf 文件:
HttpContext.Current.Response.Clear()
HttpContext.Current.Response.ContentType = "application/pdf"
HttpContext.Current.Response.AddHeader("Content-disposition", "attachment; filename=Order-" & Request("OrderNo") & ".pdf")
HttpContext.Current.Response.BinaryWrite(pdfContent)
HttpContext.Current.Response.End()
需要对代码进行哪些修改才能将文件保存到服务器的硬盘上?我猜 BinaryWrite 必须用别的东西代替,但是什么?
我非常感谢您的帮助!