Classic ASP Store objects in the session object

后端 未结 6 707
名媛妹妹
名媛妹妹 2020-12-06 14:00

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:

6条回答
  •  独厮守ぢ
    2020-12-06 14:17

    Set session data like this:

    set Session.Contents("UserData") = UserData
    

    and then get it like this:

    Session.Contents("UserData.UserIsActive")
    

提交回复
热议问题