tags:

views:

814

answers:

2

Hi, what is the difference between session and httpcontext.current.session?

+4  A: 

There is no difference.

The getter for Page.Session returns the context session.

Philippe Leybaert
+1  A: 

Nothing Session just points to the current HttpContext session.

CSharpAtl