I have a class object inside session.
public class UserProfile
{
public string firstName;
public string lastName;
public int memId;
}
UserProfile user = new UserProfile();
Session["user"]=user;
I want to check session is active or not.
Please suggest me how to check inside javascript.
Go to the complete details ...