摘要:
<a href="download.ashx?url=<%=Server.UrlEncode("111.txt")%>">下载</a>download.ashxpublic void ProcessRequest(HttpContext context) { string url = HttpContext.Current.Server.UrlDecode(context.Request.QueryString["url"]); downloadfile(url); } public bool Is 阅读全文