Classic ASP Store objects in the session object
问题 I am new to classic ASP and I need to code a web application in classic asp because the customer wants it to be in classic asp. :( Anyways! here is my question: When I have a object of a class called person: Class Person Private m_sFirstName Public Property Get firstName firstName = m_sFirstName End Property Public Property Let firstName(value) m_sFirstName = value End Property End Class set aPerson = new Person Person.firstName = "Danny" set Session("somePerson") = aPerson So far so good...