I couldn't find the lines mentioned anywhere around there or anywhere from the previous step on down. I have other mods installed on the forum, poll mod, active users, ip search.. Is there a way around this? I am attaching a txt version of my post.asp file I even commented of where lne 815 is supposed to go in relation to the number of lines down from the previous step it's commented in the form of '######## this is where line 815 is supposed to go###### I did not comment the other sections I added (oops), line 815 should go where line 932 is on my post.asp ( http://www.weeweeslap.com/post.txt ), please help! Thanks WWS
'################################## Poll Mod ###################################
'Remember to remove the &_ code from the end of the line above.
Response.Write " <td bgColor=""" & strPopUpTableColor & """ noWrap vAlign=""top"" align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>" & vbNewLine
if strRqMethod = "Topic" or strRqMethod = "EditTopic" then
if Request.QueryString("poll") = "1" then
Response.Write "Poll Question:"
else
Response.Write "Message:"
end if
else
Response.Write "Message:"
end if
Response.Write "</b><br />" & vbNewLine
' Remember to start the 2nd line below with Response.Write.
'###############################################################################
Change it to:
'################################## Poll Mod ###################################
'Remember to remove the &_ code from the end of the line above.
Response.Write " <td bgColor=""" & strPopUpTableColor & """ noWrap vAlign=""top"" align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>" & vbNewLine
if strRqMethod = "Topic" or strRqMethod = "EditTopic" then
if Request.QueryString("poll") = "1" then
Response.Write "Poll Question:"
else
Response.Write "Message:"
end if
elseif Request.QueryString("event")="1" or isevent="1" then
Response.Write strCalEventDetails
else
Response.Write "Message:"
end if
Response.Write "</b><br />" & vbNewLine
' Remember to start the 2nd line below with Response.Write.
'###############################################################################