我需要允许用户在我的vb.net网络应用中将文件下载到他们的机器上。我需要他们通过某种导航窗口自己浏览下载位置。
对于上传,我只使用type="file"
:
<input type="file" value="upload />
是否有等效的下载方法?
答案 0 :(得分:2)
对于下载,您通常会创建一个链接:
<asp:LinkButton ID="DownloadButton" runat="server" Text="Download report" OnClick="BtnDownloadClick" />
并在后面的代码中将文件流式传输到响应:
Protected Sub BtnDownloadClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles DownloadButton.Click
Response.ContentType = "application/pdf"
Response.AppendHeader("Content-Disposition", "attachment; filename=report.pdf")
Response.Clear()
Response.WriteFile(Server.MapPath("~/report.pdf"))
End Sub