簡體   English   中英

在FORM POST請求C#中下載文件

[英]Download a file in FORM POST request C#

我正在使用C#ASP.NET代碼,並嘗試根據表單的郵寄請求下載文件。 這是我的示例代碼。

    [HttpPost]
    public ActionResult PostMethodName(PostModel inputModel)
    {
        if (ModelState.IsValid)
        {
//other code is removed.
 //Writing this for the test 
            //Download Method call
            DownloadCertificate("This is the test file to download.");

            var statusHtml = RenderViewToString("Status",
            new ErrorMsgModel
            {                    
                IsSuccess = true,
                ErrorDesc = "desc"
            });

            return Json(new { IsSuccess = true, ErrorDescription = 
statusHtml}, JsonRequestBehavior.AllowGet);
        }
        var statusHtml1 = RenderViewToString("Status",
            new ErrorMsgModel
            {
                IsSuccess = false,
                ErrorDesc = "desc"
            });
        statusHtml1 = statusHtml1.Replace("'", "\\'");
        statusHtml1 = statusHtml1.Replace(Environment.NewLine, "");
        return Json(new { IsSuccess = false, ErrorDescription = statusHtml1 
}, JsonRequestBehavior.AllowGet);
    }

從該方法調用的下載方法。

public ActionResult DownloadCertificate(string content)
    {
        //Certificate Download
        const string fileType = "application/pkcs10";
        string fileName = "Certificate" + DateTime.Today.ToString(@"yyyy-MM-dd") + ".csr";
        var fileContent = String.IsNullOrEmpty(contrnt) ? "" : contrnt;
        byte[] fileContents = Encoding.UTF8.GetBytes(fileContent);
        var result = new FileContentResult(fileContents, fileType) { FileDownloadName = fileName };
        return result;
    }

文件下載不起作用,發布功能按要求工作。

您的DownloadCertificate方法返回一個值,但是您永遠不要在PostMethodName方法中使用該返回值。

假設您從該方法返回json,建議您在響應中返回指向文件結果的直接鏈接。 然后,使用方客戶端可以啟動下載。 就像是:

return Json(new { IsSuccess = true, Location = Url.Action("DownloadContent")});

或者,您可以考慮采用更輕松的方法,並從post操作返回302響應:

if (ModelState.IsValid)
{
    // you code here
    return RedirectToAction("Controller", "DownloadContent", new {content = "myContent"});
}

根據您的客戶端,這很可能會透明地進行下載,同時保持Post-Redirect-Get模式

[HttpPost]
public ActionResult DownloadCertificate(PostModel inputModel, string content)
{
    if(!ModelState.IsValid){return Json(new {Success=false,//error descr})}
    //Certificate Download
    const string fileType = "application/pkcs10";
    string fileName = "Certificate" + DateTime.Today.ToString(@"yyyy-MM-dd") + ".csr";
    var fileContent = String.IsNullOrEmpty(contrnt) ? "" : contrnt;
    byte[] fileContents = Encoding.UTF8.GetBytes(fileContent);
    var result = new FileContentResult(fileContents, fileType) { FileDownloadName = fileName };
    return result;
}

在之前的代碼中,您沒有使用DownloadCertificate結果,而是執行了它。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM