Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 Strange FAQ Page
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

eviljoker7075
Junior Member

United Kingdom
166 Posts

Posted - 05 November 2005 :  07:27:19  Show Profile  Visit eviljoker7075's Homepage
Hey guys I'm having a few issues with my FAQ page. It's not displaying properly... could someone give me a hand?

Here is a link to the page: http://www.westburytownforum.com/faq.asp

And here is a link to a txt file of my FAQ source code: http://www.westburytownforum.com/faq.txt

Please help, thanks.

Podge
Support Moderator

Ireland
3776 Posts

Posted - 05 November 2005 :  07:49:39  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
You have an extra "end if" on line 155.

			"                <td bgcolor=""" & strForumCellColor & """>" & vbNewLine & _
			"                <p><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & vbNewLine & _
			"                You've probably seen others use smilies before in e-mail messages or other bulletin " & vbNewLine & _
			"                board posts. Smilies are keyboard characters used to convey an emotion, such as a smile " & vbNewLine & _
			"                " & getCurrentIcon(strIconSmile,"","hspace=""10"" align=""absmiddle""") & " or a frown " & vbNewLine & _
			"                " & getCurrentIcon(strIconSmileSad,"","hspace=""10"" align=""absmiddle""") & ". This bulletin board " & vbNewLine & _
			"                automatically converts certain text to a graphical representation when it is " & vbNewLine & _
			"                inserted between brackets [].  Here are the smilies that are currently " & vbNewLine & _
			"                supported by " & strForumTitle & ":<br />" & vbNewLine
	response.write  "				<table border=""0"" align=""center"" cellpadding=""5"">" & vbNewLine
	strsql = "SELECT S_CODE, S_URL, S_DESC FROM " & strTablePrefix & "SMILES WHERE S_VISIBLE=1 AND S_ENABLED='yes' ORDER BY S_DESC"
	set srs = my_conn.execute(strsql)
	
	smiledata=srs.getrows
	numrows=ubound(smiledata,2)
	
	srs.close
	set srs=nothing
	
	newline = 0
	numcols = 0
	for smi = 0 to numrows
		if numcols = 3 then
			response.write "					</tr>" & vbNewline
			newline = 0
			numcols = 0
		end if
		if newline = 0 then
			response.write "					<tr>" & vbNewline
			newline = 1
		end if
		response.write  "						<td nowrap bgcolor=""" & strForumCellColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" &_
						getCurrentIcon(smiledata(1,smi)& "||","","align=""absmiddle""") & "  " & smiledata(2,smi) & "  " & smiledata(0,smi) & "</font>" &_
						"						</td>" & vbNewline
		numcols = numcols + 1
	next
	do until numcols = 3
		response.write "						<td bgcolor=""" & strForumCellColor & """> </td>" & vbNewline
		numcols = numcols + 1
	loop
	response.write  "				</table>" & vbNewLine &_
					"                </td>" & vbNewLine & _
					"              </tr>" & vbNewLine
end if


If you've applied a mod to faq.asp you should re-check that you've added it correctly.

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.3 seconds. Powered By: Snitz Forums 2000 Version 3.4.07