摘要:
public void ProcessRequest(HttpContext context) { context.Response.ContentType = "application/x-excel"; string filename = HttpUtility.UrlEncode("用户数据.xls"); context.Response.AddHeader("Content-Disposition", "attachment;filename="+filename); ... 阅读全文