使用会话对象时未将对象引用设置为对象的实例
这有什么问题吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
会话可能是暂时的。它很可能会消失,或者您可能处于一个从未向该键分配任何内容的新会话中。假设最坏的情况 - 事实上,您所需要的只是:
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:
只要不关闭窗口,就有多种方法可以使会话永远保持活动状态。在您希望保持会话活动的页面中,将其添加到 .aspx 页面底部的某个位置,就在
现在您必须创建一个新页面之前。称之为 Defibrillator.aspx 这不是我的主意,但我忘记了作者的名字。
除颤器.aspx
除颤器.aspx.cs
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
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
Defibrillator.aspx.cs