i'm just want to know is there any way to get the custom type value from session variable in jquery?
for example. i have a class named user.
public class user{
public string userid;
public string username;
}
public static class Abc
{
public static List <user> user; //user type list
}
and in session variable i have session["userclass"] = Abc.user;
now the question is how to get value from this session variable using jquery.
i know about var abc = <%=session["variablename"]%>
but how to get value of the user class variables using above session variable in jquery?