Global.asax.cs and Session[]

J

Just D

Does anybody have any idea why we were able to get Session[] in
Global.asax.cs in .NET 1.1 and the same code became unworkable in .NET 2.0?
The code is compilable but the app complains when gets to this point that
Session[] is not available in current context. Why?

Just D.
 
M

Michael Nemtsev [MVP]

Hello Just,

Any source code demonstrating this problem? Because as I know there is few
of foretellers

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


JD> Does anybody have any idea why we were able to get Session[] in
JD> Global.asax.cs in .NET 1.1 and the same code became unworkable in
JD> .NET 2.0? The code is compilable but the app complains when gets to
JD> this point that Session[] is not available in current context. Why?
JD>
JD> Just D.
JD>
 
J

Just D

Peter,

That's easy. I'm not calling Session[] from Application_Start before it was
created for sure. :) The code I wrote about is located inside protected void
Application_Error(Object sender, EventArgs e) and it was working for several
years with .NET 1.1. After I switched to 2.0 the same code stopped working.
Although the code is compilable it returns a run-time error when I try to
get this:

try
{
//session = (DxSession)Context.Session["Session"];
//session = (DxSession)HttpContext.Current.Session["Session"];
session = (DxSession)Session["Session"];
}
catch
{
return;
}

I also tried these two calls with the same result. I saw these advices on
the Internet.
session = (DxSession)Context.Session["Session"];
session = (DxSession)HttpContext.Current.Session["Session"];

Just D.


Peter Bromberg said:
You haven't described *where* in global.asax that you are trying to get
Session data, so we can ony guess.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com


Just D said:
Does anybody have any idea why we were able to get Session[] in
Global.asax.cs in .NET 1.1 and the same code became unworkable in .NET
2.0?
The code is compilable but the app complains when gets to this point that
Session[] is not available in current context. Why?

Just D.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top