从asp.net中的WebMethod下载文件

时间:2014-04-12 10:31:28

标签: c# jquery .net

我使用以下方法将文件从服务器下载到客户端

[WebMethod(EnableSession = true)]       
public static bool AddEtag(string pwd, int id)
{
     HttpContext.Current.Response.Clear();
     HttpContext.Current.Response.ContentType = "application/vnd.csv";
     HttpContext.Current.Response.AddHeader("content-disposition", "inline; filename=\"" + fileData.FileName + "\"");
     HttpContext.Current.Response.End();
}

但我无法在客户端下载该文件。可以使用处理程序完成。任何链接都没关系

0 个答案:

没有答案