I check session in a class. but Session property is null I mean not the variable session property.
normally we can check like this. session it's null or not
if(HttpContext.Current.Session["member_login"] !=null)
but
**HttpContext.Current.Session**
This part of code line is null without string variable. Whats the problem I've searched stack overflow but I can't find like this problem
Webservices causes this problem but When we add this property over the webmethod we can solve it
[WebMethod (EnableSession = true)]
is this problem something like that?
check second image session property is null