?? download.ashx
字號:
<% @ 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -