I just keep getting these kinds of error at the end of codes:
Microsoft VBScript compilation error '800a03f6'
Expected 'End'
/Jorrit787/forum/Default.asp, line 1090
For example, the last lines in default.asp are like this:
Function listForumModerators(fForum_ID)
fForumMods = split(strForumMods,"|")
For iModerator = 0 to ubound(fForumMods)
fForumMod = split(fForumMods(iModerator),",")
ModForumID = fForumMod(0)
ModMemID = fForumMod(1)
ModMemName = fForumMod(2)
If cLng(ModForumID) = cLng(fForum_ID) then
If fMods = "" then
fMods = "<nobr>" & profileLink(chkString(ModMemName,"display"),ModMemID) & "</nobr>"
Else
fMods = fMods & ", <nobr>" & profileLink(chkString(ModMemName,"display"),ModMemID) & "</nobr>"
End If
End if
Next
If fMods = "" then
fMods = " "
listForumModerators = fMods
Else
End If <-- Line 1090
End Function
%>
It doesn't look to me like there's an unfinished If block, but I keep getting this...
What to do?