When is the file post_info.asp used, because it appears quite frequently on the active_users.asp list as being visited. Clicking on the Current Page link to post_info.asp there is just a header and footer displayed.
Would it is possible to get the active users routine to ignore these page visits, if it is not important..<
ok that explains the frequency of post_info's Could the post_info be ommited on the active_users listing, until the target has been reached? Thank you<
Looking into how to alleviate the post_info.asp being listed. I do not have access to my active_user.asp file but the can the code which extracts the data (sql??) for the Active Guests listing be adjusted so there can be a line added to omit/ignore the post_info.asp file in the current page heading.
ie SELECT * FROM Activeusers WHERE currentpage NOT LIKE 'post_info.asp'
case else
strPage = strPage & Mid(fScript, 1, instr(fScript, ".")-1)
end select
strPage = strPage & "</a>"
if lcase(instr(fscript, "admin_")) > 0 Then
strPage = fLang(strLangMOD_Ls3kAU_01380)
end if
WhatPage = strPage
end function
Change it to say:
case else
strPage = strPage & Mid(fScript, 1, instr(fScript, ".")-1)
end select
if strPage <> "post_info.asp" then
strPage = strPage & "</a>"
if lcase(instr(fscript, "admin_")) > 0 Then
strPage = fLang(strLangMOD_Ls3kAU_01380)
end if
if strOnlineLocation <> "" then strPage = strOnlineLocation
WhatPage = strPage
else
WhatPage = ""
end if
end function
I have tried the routine above, it still shows post_info.asp or Posting Message from my lang LangMODS_Ls3kAU4_1033.asp strLangMOD_Ls3kAU_01241 = "Posting Message".
I was under the impression this code was going to remove the page in the query search..thus not showing it at all. Here is my active_users.asp text file<