Hi Guys,
Using NT5.29, I want to update a session variable from a menu item and have the menu refresh. (The session variable determines what the menu shows).
if p_web.GSV( 'l:CbAskExperts' )
l:CbAskExperts = 0
p_web.SSV( 'l:CbAskExperts', l:CbAskExperts )
else
l:CbAskExperts = 1
p_web.SSV( 'l:CbAskExperts', l:CbAskExperts )
end!if
This is the code I want to run but I can't seem to find a place to add the code so that it executes only when my menu item is clicked on.
Any suggestions?