MVC应用程序Fileresult在pdf上获得ERR_CONNECTION_REFUSED

时间:2015-03-22 16:04:37

标签: c# asp.net asp.net-mvc webforms async-await

我正在尝试从get请求获取pdf但它失败了。当我在chrome中检查控制台时,我得到GET http://localhost:50673/Logbook/PrintPage?bilder=checked net :: ERR_CONNECTION_REFUSED。有些IIS使用了吗?我直接在visual studio 2013中运行它。

我试过这段代码,

    [AsyncTimeout(150)]
    [HttpGet]
    public async Task<FileResult> PrintPage(bool bilder = false)
    {
        --------
     --------
      --------
      --------
    System.IO.FileInfo file =         AsposePDFBuilder.PdfBuilder.ExportForPrint(exportData, hidePronAoInfo, true);

        //System.Web.HttpResponse response = System.Web.HttpContext.Current.Response;
        //response.ClearContent();
        //response.Clear();
        //response.ContentType = "application/pdf";
        //response.AddHeader("Content-Disposition", "attachment; filename=\"" + file.Name + "\"");
        //response.TransmitFile(file.FullName);
        //response.End();
        ViewBag.Result = "Export är nedladdad";

        return File(file.FullName, "application/pdf");

1 个答案:

答案 0 :(得分:0)

修正了它,得到了一个在actionlink类上触发的jquery loadevent。在firefox中有一个烦人的警报,chrome没有提醒我。尝试使用不同的浏览器是我的建议。