scubatoys wrote:
Same thing bothered me... I'm not a fancy programmer - but I know enough HTML that I simply went into the default.asp and commented out the <A href> tags. Then you can simply bookmark that page and go to it if you want, but no one else will have a direct link to it.
Here are the line numbers and what I did... I think they are stock numbers - but you may be a bit off depending on mods: original 771 <td colspan="2"><a href="active_users.asp<% = strQsSID1 %>"><% = strTxtActiveUsers %></a></td>
modified Line 771 <td colspan="2"><!-- a href="active_users.asp --><% = strQsSID1 %><% = strTxtActiveUsers %><!-- /a --></td>
original 774 <td width="4%" align="center"><a href="active_users.asp<% = strQsSID1 %>"><img src="<% = strImagePath %>active_users.gif" alt="<% = strTxtActiveUsers %>" border="0" /></a></td>
modified line 774 <td width="4%" align="center"><!-- a href="active_users.asp--><% = strQsSID1 %><img src="<% = strImagePath %>active_users.gif" alt="<% = strTxtActiveUsers %>" border="0" /><!-- /a --></td>
original 903 Response.Write(strTxtInTotalThereAre & " " & intActiveUsers & " <a href=""active_users.asp" & strQsSID1 & """>" &
modified line 803 Response.Write(strTxtInTotalThereAre & " " & intActiveUsers & " <!-- a href=""active_users.asp" & strQsSID1 & """ -->" &
|
So you can see that I didn't just add... I also subtracted a little...
So the !-- is added to comment out that line, and the --> ends the comment. Then I also had to delete an extra "> that was in some of the lines...
So what I've done here is made red what I've added, and highlighted in blue the parts in the original line I deleted.
Hope that helps!
You can see it at my site http://www.scubatoys.com/forum - it simply does not make those links.