public void DownLoadConfigFile(string name) { //获取文件字符串内容 var data = _service.ReadFileStr(_configureFilePath + name); MemoryStream ms = new MemoryStream(Encoding.Default.GetBytes(data)); string filename = HttpUtility.UrlEncode(name); HttpContext.Current.Response.Clear(); HttpContext.Current.Response.AddHeader("Content-Disposition", ("attachment;filename=" + filename)); HttpContext.Current.Response.Charset = "UTF-8"; HttpContext.Current.Response.ContentType = "text/json"; HttpContext.Current.Response.BinaryWrite(ms.ToArray()); HttpContext.Current.Response.Flush(); }
ajax:
$("#myform").attr("action", "/AjaxSwitchConfigInfo/DownLoadConfigFile.cspx?name=" + $("#filename").val());
$("#myform").submit();