我无法在ASHX文件中获取会话值
我搜索here所以我可以解决我的问题。
但我仍然无法获得会话价值。 请让我接受你的建议。
[ASPX设计文件]
...
<form id="form1" runat="server">
<div>
<iframe runat="server" id="iframepdf" height="600" width="800" src="./PDFViewer.ashx"></iframe>
</div>
</form>
...
[ASPX Code Behind]
...
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 Code Behind]
...
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;
}
}
}
}
答案 0 :(得分:0)
通过阅读代码中的评论,我将其解释为您获得了context.Session["StackOverflow"]
而不是["PDFFileName"]
值?那是对的吗?在分配会话值的页面中以及在使用它们的处理程序中放置断点并运行调试器。
也许你拼错了钥匙?请记住,按键是大小写的。