Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/60453?pagenum=1
05 November 2025, 14:11
Topic
prescottw
*member* level so they can only see
13 December 2005, 14:22
Hello Snitzlings!
I am in need of showing *sam* a moderator level 2 a menu, so they can only see. (well me too I guess)
I am using this for me.
<% if mLev = "4" then %> <!-- #include file="12345.asp" --> <% end if %>
What would be the proper code for a moderator, not just level 2 but *sam the moderator level 2*?
Thanks very much,
-prescott w. snitzling
<
Replies ...
Podge
13 December 2005, 15:50
Probably something like;
Replace your first line
Code:
<% if mLev = "4" then %>
with
Code:
<% if mLev = "4" or (mLev = "2" and MemberID = "2222" then %>
(where 2222 is the member id of "sam")<
prescottw
13 December 2005, 18:35
hmmmmn no not getting any thing with that. I tried several; variations.
What about just the member ID without having to be a moderato, well along with me level 4?
Thanks for you help Podge
-prescottw<
prescottw
13 December 2005, 19:13
<% if mLev = "4" or MemberID = "222" then %> Can u see this <% end if %>
This worked... Thanks Podge for Bending my brain.
-prescott w. snitzling<