获取会话值- ASP.. NET Web处理程序文件
本文关键字:Web 处理 程序 文件 NET ASP 会话 获取 | 更新日期: 2023-09-27 17:54:20
我无法在ASHX文件中获取会话值。
我已经在这里搜索了,所以我可以解决我的问题。
但是我仍然不能得到会话值。请让我听听你的建议。
[ASPX Design File]
...
<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;
}
}
}
}
从阅读注释在你的代码我解释它,你得到context.Session["StackOverflow"]
,但不是["PDFFileName"]
值?对吗?在分配会话值的页面和使用会话值并运行调试器的处理程序中设置断点。