Hi ABM gurus
I am trying to figure out how or where can I check if the page session is a new one?
I am trying to change the visibility of a few rows depending on User status (Logged in or not) and session status (New session or existing one)
My logic would be:
I will have 2 TopBanner Rows, one with 2 buttons (REGISTER and LOGIN) and another with User Info.
If UserIsGuest = true or SessionIsNew = true then show Topbar1, Hide TopBar2
If UserIsGuest = false and PageComesFromCache = True then Show TopBar1, Hide ToBar2
If UserIsGuest = false (logged in) and SessionIsNew = True then show TopBar1, Hide TopBar2
If UserIsGuest = false and SessionIsNew = False then Hide TopBar1, Show TopBar2
Problem is, is my logic accurate? where can I check all that?
I am trying to figure out how or where can I check if the page session is a new one?
I am trying to change the visibility of a few rows depending on User status (Logged in or not) and session status (New session or existing one)
My logic would be:
I will have 2 TopBanner Rows, one with 2 buttons (REGISTER and LOGIN) and another with User Info.
If UserIsGuest = true or SessionIsNew = true then show Topbar1, Hide TopBar2
If UserIsGuest = false and PageComesFromCache = True then Show TopBar1, Hide ToBar2
If UserIsGuest = false (logged in) and SessionIsNew = True then show TopBar1, Hide TopBar2
If UserIsGuest = false and SessionIsNew = False then Hide TopBar1, Show TopBar2
Problem is, is my logic accurate? where can I check all that?