0

如何通过控制器操作的路径返回特定的 aspx 页面?

这是我从控制器操作重定向的方式:

Response.Redirect("_PDFLoader.aspx?Path=" + FilePath  +  id + ".pdf");

甚至尝试了以下方法:

return Redirect("_PDFLoader.aspx?Path=" + FilePath + id + ".pdf");

这是我的 _PDFLOader.aspx 页面:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="_PDFLoader.aspx.cs" Inherits="Proj._PDFLoader" %>

这是我的代码隐藏文件:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;

namespace Proj
{
    public partial class _PDFLoader : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string OutfilePath = Request.QueryString["Path"].ToString();
            FileStream objfilestream = new FileStream(OutfilePath, FileMode.Open, FileAccess.Read);
            int len = (int)objfilestream.Length;
            Byte[] documentcontents = new Byte[len];
            objfilestream.Read(documentcontents, 0, len);
            objfilestream.Close();

            if (File.Exists(OutfilePath)) File.Delete(OutfilePath);       

            Response.ContentType = "application/pdf";
            Response.AddHeader("content-length", documentcontents.Length.ToString());
            Response.BinaryWrite(documentcontents);

        }
    }
}

任何帮助深表感谢。

4

1 回答 1

4

以下应该有效:

public class SomeController: Controller
{
    public ActionResult SomeAction() 
    {
        return Redirect("~/_PDFLoader.aspx?Path=" + Url.Encode(FilePath + id) + ".pdf"");
    }
}

但据我所知,这个_PDFLoader.aspxWebFrom 所做的只是提供文件然后删除它。您可以直接从控制器操作中执行此操作:

public class SomeController: Controller
{
    public ActionResult SomeAction() 
    {
        string path = FilePath + id + ".pdf";
        if (!File.Exists(path))
        {
            return HttpNotFound();
        }
        byte[] pdf = System.IO.File.ReadAllBytes(path);
        System.IO.File.Delete(path);
        return File(pdf, "application/pdf", Path.GetFileName(path));
    }
}

如果您希望文件内联显示而不是下载它:

return File(pdf, "application/pdf");
于 2012-10-12T13:44:57.497 回答