我是这样写的:
public void ProcessRequest(HttpContext context) { if ((context.Request.QueryString["t"] != null) && (context.Request.QueryString["path"] != null)) { context.Response.ContentType = GetMimeType(context.Request.QueryString["t"]); context.Response.Cache.SetCacheability(HttpCacheability.Public); context.Response.BufferOutput = false; context.Response.WriteFile("uppic\\" + context.Request.QueryString["path"]); }
}
这样直接把图片显示在浏览器中了,我需要是直接提示用户另存图片。
1 回答
- 1 回答
- 0 关注
- 473 浏览
添加回答
举报
0/150
提交
取消