download.ashx
来自「对web开发很有帮助的」· ASHX 代码 · 共 25 行
ASHX
25 行
<% @ webhandler language="C#" class="DownloadHandler" %>
using System;
using System.Web;
using System.IO;
using A2KWebServerSample;
public class DownloadHandler : IHttpHandler
{
public bool IsReusable
{
get
{
return true;
}
}
public void ProcessRequest(HttpContext ctx)
{
string strPath = ctx.Server.MapPath("../doc/template.doc");
ctx.Response.ContentType = Common.GetContentTypeByFileName(strPath);
ctx.Response.WriteFile(strPath);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?