Can we assign objects (such as Classes object or structure ) to session.variable ?
Dim objEmp As New stuEmployee
objEmp.intEmpId = 1
objEmp.strName = "Test"
CurrentSession.Variable(1) = objEmp
This line throws " An unknown error occured"
Please advice. |