Paul
|
| Posted: 03/26/2002, 2:16 AM |
|
If i would like to hide a menu form on an admin page depending on whether their UserRights are high enough is this correct?
if Session("UserRights")=20 then
SetVar "Administration",""
exit sub
end if
I only want this form visable if the user has UserRights of 20....
Thanks in advance
|
|
|
 |
Alex Alexapolsky
|
| Posted: 03/26/2002, 2:36 AM |
|
if NOT Session("UserRights")=20 then
|
|
|
 |
cornwell
|
| Posted: 03/26/2002, 12:33 PM |
|
You need to say...
...
SetVar "FormAdministration",""
The prefix 'Form' is required
|
|
|
 |
|