quote: Do you think it is the topic.asp Do you have a text version? /Roger
He meant, open your topic.asp file in a html or text editor and save it as a text file topic.txt. Upload it to your website and then post a link to it so we can look at the code.
Hi again. Can someone help me with this problem? I must build up my snitz forum but I cannot do so if the topics don’t expand correctly With regards Roger
Sorry... I have deleted the target now. the site is up again. The problem is that I have 2 frames named top and low and when I click on home in snitz the top appears 2 times but from the goto link it works. /Roger
Glad to have helped. Now lets get to your problem. We are going to have to do some debugging. Just to confirm, you are using the 3.3.03 version right?
Around line 275 in your topic.asp file you will find this bit of code:
Response.Write "EOF:" & rsReplies.EOF & "<br>" If not (rsReplies.EOF or rsReplies.BOF) then '## No replies found in DB Response.Write "Replies Found" rsReplies.movefirst rsReplies.pagesize = strPageSize rsReplies.absolutepage = mypage '** maxpages = cint(rsReplies.pagecount) end if
Add the code in red. You should get some text on the topic.asp page when you view it.
Ok. Remove those lines I asked you to add. Around line 345 you will find this bit of code:
if rsReplies.EOF or rsReplies.BOF then '## No replies found in DB Response.Write "No replies" else Response.Write "Replies found" intI = 0 howmanyrecs = 0 rec = 1
Add the code in red again and refresh your topic.asp file. You should see some text show up.