问题描述
是这样的,我想从服务器上下载文件到客户端,查资料后发现基本都推荐以下stringfileName="asd.txt";//客户端保存的文件名stringfilePath=Server.MapPath("DownLoad/aaa.txt");//路径FileInfofileInfo=newFileInfo(filePath);Response.Clear();Response.ClearContent();Response.ClearHeaders();Response.AddHeader("Content-Disposition","attachment;filename="+fileName);Response.AddHeader("Content-Length",fileInfo.Length.ToString());Response.AddHeader("Content-Transfer-Encoding","binary");Response.ContentType="application/octet-stream";Response.ContentEncoding=System.Text.Encoding.GetEncoding("gb2312");Response.WriteFile(fileInfo.FullName);Response.Flush();Response.End();但是我在VS2015里没有发现Response,而发现HttpResponse里具有Response的各种功能,但是我不会使用HttpResponse,求教各位大神该如何使用HttpResponse
解决方案
解决方案二:
补充一下HttpResponse类的部分截图
解决方案三:
Response这个你加引用了吗
解决方案四:
没有,该using哪个命名空间
解决方案五:
引用2楼yzf86211861的回复:
Response这个你加引用了吗
没有,该using哪个命名空间