我无法在 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;
}
}
}
}