Is it possible to persist a class in session that I define in VBScript in classic asp:
<script runat=server language=vbscript>
Class clsCourse
Private Sub Class_Initialize
' Statements go here.
End Sub
End Class
dim oCourse
set oCourse=new clsCourse
</script>
How would I persist oCourse in session and recover it from session?
I know session is bad, but this is a high volume application and I'm concerned about hitting the database multiple times in a page call.