I disabled the "toast" notification. While searching for coding answers it gets rather anoying... but with it enabled or disabled I don't see the notification in the status bar...
I do appreciate the help, but this isn't a high priority - just really annoying.
Nick, I'd imagine that it would be similar to what you did to add the forum:'## RSS Mod for IE Glow
'## Add this line so that feed icon glows even when there is no page specified
Response.Write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp"" title=""Minasi Forum Feed (Main)"">" & vbNewline
'## Marcels Code for feeds to change live with forum ID.
if Instr(strScriptName,"default.asp") > 0 or Instr(strScriptName,"forums.asp") > 0 or Instr(strScriptName,"forum.asp") > 0 or Instr(strScriptName,"index.asp") > 0 then
if request.querystring("forum_id") <> "" and IsNumeric(forum_id) = true then
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp?FORUM_ID=" & request.querystring("FORUM_ID") & """ title=""RSS: " & GetNewTitle(strScriptName) & """>"
elseif request.querystring("cat_id") <> "" and IsNumeric(cat_id) = true then
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp?CAT_ID=" & request.querystring("CAT_ID") & """ title=""RSS: " & GetNewTitle(strScriptName) & """>"
else
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp"" title=""Minasi Forum Feed (Main)"">"
end if
end if
<