I haven't read enough of this forum to know if anyone already posted this, but I make use of it myself and it's pretty useful, IMO. Just thought I'd share for anyone who was wondering how to do this.
Just Replace (Line 76 on inc_top.asp)
Response.Write "<html>" & vbcrlf & vbcrlf & _
"<head>" & vbcrlf & _
"<title>" & strForumTitle & "</title>" & vbcrlf & vbcrlf
With this:
Response.Write "<html>" & vbcrlf & vbcrlf & _
"<head>" & vbcrlf & _
"<title>" & strForumTitle
If Request.QueryString("Forum_Title") <> "" Then
Response.Write ": " & Request.QueryString("Forum_Title")
End If
If Request.QueryString("Topic_Title") <> "" Then
Response.Write ": " & Request.QueryString("Topic_Title")
End If
Response.Write "</title>" & vbcrlf & vbcrlf
Now the <TITLE>
tag of any forum you're in will show what Forum and Topic you're in!
Edited by - DraX3D on 08 June 2001 14:37:46