如何从控制器操作重定向/返回aspx页面?

时间:2012-10-11 17:35:57

标签: c# html asp.net-mvc

如何从控制器操作的路径返回特定的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" %>

这是我的CodeBehind文件:

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);

        }
    }
}

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:4)

以下内容应该有效:

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

但是我可以看到,_PDFLoader.aspx WebFrom所做的就是提供文件然后将其删除。您可以直接从控制器操作执行此操作:

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");