使用会话对象时未将对象引用设置为对象的实例

发布于 2025-01-08 03:23:10 字数 183 浏览 0 评论 0原文

这有什么问题吗?

strFname = this.Session["FileName"].ToString();

而我将其定义为

Session["FileName"] = strFname;

它给出的对象引用错误。

Whats wrong in this?

strFname = this.Session["FileName"].ToString();

while i defined it as

Session["FileName"] = strFname;

Its giving object reference error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独守阴晴ぅ圆缺 2025-01-15 03:23:10

会话可能是暂时的。它很可能会消失,或者您可能处于一个从未向该键分配任何内容的新会话中。假设最坏的情况 - 事实上,您所需要的只是:

strFname = (string)Session["FileName"];
if(strFname != null) {
    // ...
}

Session can be transient. It may well disappear, or you might be in a new session that has never assigned anything to that key. Assume the worst - in fact, all you need is:

strFname = (string)Session["FileName"];
if(strFname != null) {
    // ...
}
老子叫无熙 2025-01-15 03:23:10

只要不关闭窗口,就有多种方法可以使会话永远保持活动状态。在您希望保持会话活动的页面中,将其添加到 .aspx 页面底部的某个位置,就在

<!-- Keep all session variables alive -->
<iframe id="Defib" src="Defibrillator.aspx" runat="server" frameborder="0" height="0" width="0"></iframe>

现在您必须创建一个新页面之前。称之为 Defibrillator.aspx 这不是我的主意,但我忘记了作者的名字。

除颤器.aspx

<body></body>

除颤器.aspx.cs

protected void Page_Load(object sender, EventArgs e)
{
    Response.AddHeader("Refresh", Convert.ToString((Session.Timeout * 60) - 10));
}

There are ways you can keep sessions alive forever as long as you do not close the window. In the page you wish to keep sessions alive, add this to the .aspx page somewhere on the bottom, just before

<!-- Keep all session variables alive -->
<iframe id="Defib" src="Defibrillator.aspx" runat="server" frameborder="0" height="0" width="0"></iframe>

Now you'll have to make a new page. Call it Defibrillator.aspx This isn't my idea, but I forgot the author's name.

Defibrillator.aspx

<body></body>

Defibrillator.aspx.cs

protected void Page_Load(object sender, EventArgs e)
{
    Response.AddHeader("Refresh", Convert.ToString((Session.Timeout * 60) - 10));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文