2

我无法在 ASHX 文件中获取会话值。
我在这里搜索过,所以我可以解决我的问题。

但我仍然无法获得会话价值。请让我得到你的建议。

[ASPX 设计文件]

...
<form id="form1" runat="server">
<div>
    <iframe runat="server" id="iframepdf" height="600" width="800" src="./PDFViewer.ashx"></iframe>
</div>
</form>
...

[ASPX 代码背后]

...
namespace WebApplication1
{
public partial class NameCard : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {   
        Session["PDFFileName"] = @"D:\Test.pdf";
    }
}
}

正如您在文件后面看到的代码,
我为会话对象设置了一些值。
然后,我写在 ashx 文件下面。

[ASHX代码背后]

...
namespace WebApplication1
{
public class PDFViewer : IHttpHandler, System.Web.SessionState.IRequiresSessionState
{
    public void ProcessRequest(HttpContext context)
    {   
        context.Session["StackOverflow"] = "overflowing";  // This one give me output value as "overflowing"
        if (context.Session["PDFFileName"] != null) {  // My problem is this line, It always say null value ...
            context.Response.ContentType = "Application/pdf";
            var PDFFileName = context.Session["PDFFileName"].ToString();                
            context.Response.WriteFile(PDFFileName);
            context.Response.End();
            context.Session["PDFFileName"] = string.Empty;
        }

    }

    public bool IsReusable
    {
        get
        {
            return false;
        }
    }
}
}
4

1 回答 1

0

通过阅读您代码中的注释,我认为您获得了价值,context.Session["StackOverflow"]但没有获得["PDFFileName"]价值?那是对的吗?在分配会话值的页面和使用它们并运行调试器的处理程序中放置断点。

也许你拼错了钥匙?请记住,键是区分大小写的。

于 2013-01-18T09:18:57.513 回答