2

Is there any difference between page.Session["name"] and HttpContext.Current.Session["name"]?

tesicg
  • 3,971
  • 16
  • 62
  • 121

1 Answers1

4

No difference. Page.Session returns pointer to HttpContext.Current.Session object.

Andrei
  • 42,814
  • 35
  • 154
  • 218