Updated Nov 4, 2001 NETSCAPE 4.7 Compatible (thanks to Raichelle for point this out)
if you have too many moderators on a form and have show moderators on your forum looks all wacky and ugly cus of the listing of the names...
well here is a simple solution :) instead of listing them all in the moderator column it puts all the moderator names for that perticular forum in a drop down
unfortonately i dont have a example to show yet cus i am at work when i get home i will have an example
Set rsChk = Server.CreateObject("ADODB.Recordset") rsChk.open strSql, my_Conn
if rsChk.EOF or not(ChkQuoteOk(fForum_ID)) then listForumModerators = "" exit function end if fMods = fMods & "<form name=""form1"" method=""post"" action="" ""><SELECT name=""Mods""><Option>" fMods = fMods & rsChk("M_NAME") rsChk.MoveNext do until rsChk.EOF fMods = fMods & "<OPTION>" & rsChk("M_NAME") rsChk.MoveNext loop rsChk.close set rsChk = nothing
listForumModerators = fMods & "</SELECT></form>" end function
default.asp approx line 352 change it so that the drop down is centered replace
Cool... I dont expect that people are THAT interested in the moderator list anyway (I disabled showing it) but if you DO and you want a down and dirty way, just put the list into the TITLE attribute of a link or graphic in that column, very small and when someone wants to get a quick peek, just hover over the text/image with your mouse. Not perfect but quick and easy.
3.14 did not have moderation, at least i dont think
even if your using the moderation mod before it was implemented on snitz base
all you have to do is where the actual moderators are displayed on the page just put code there and tell it to put the names in a drow down instead of right on in the table column
thats got to SUCK i didnt change anything other than added a drop down now if that doesnt work in netscape then netscape SUCKS well i already knew that, just wanna re-emphasis that
i will check it out at work tomorrow and see if i can get it to work in netscape too