A recommendation for Forum 7.97
Currently when using multiple moderators for a area of discussion the current release does not separator them with any other character other than a space. The following code corrects that by also inserting a comma before the space between moderators to destinguesh between them. Here is the code I use in default.asp to provide the separtion.
The change occures in the loop that starts at line nunber 334 below rsCommon.MoveNext and before the loop. Here is the code:
---------------------
Do While NOT rsCommon.EOF
'Place the moderators username into the string
strModeratorsList = strModeratorsList & " <a href=""members.asp?GID=" & rsCommon("Group_ID") & """ class=""smLink"">" & rsCommon("Name") & "</a>"
'Move to the next record
rsCommon.MoveNext
' new code added
if rsCommon.EOF then
exit do
end if
strModeratorsList = strModeratorsList & ","
Loop
-------------------
Use with permission and enjoy. Pat