Hide Hyperlinks Visitors?

  • Thread starter Thread starter Patrick.O.Ige
  • Start date Start date
P

Patrick.O.Ige

What are the best ways to hide hyperlinks from visitors?
Any ideas
 
Make them runat="Server" and use the Visible="false" which will make it so
they aren't rendered (ie, the won't appear in view source).

Or use the display:none; css style which will still render them (view source
will show them) but they won't be visible.

Karl
 
Thx Karl for the reply..
But if Visible is set to FALSE the link won't be shown.
Or 'm not getting you?
 
re:
But if Visible is set to FALSE the link won't be shown.

Wasn't your question :
"What are the best ways to hide hyperlinks from visitors?"

"Hide" means "set to not visible", doesn't it ?

Or, did you mean something else ?



Juan T. Llibre
ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
==========================
 
Do you mean "Hide links that have been visited?"
If yes, CSS.

Or do you mean hide the visitors themselves. For this you require a client
side script to stuff them into the back of the wardrobe.
 
i assume you mean the url showing in the status bar. just catch the
mouseover event in the hyperlink, and set the status message to something
you like

<a href="foo.apx" onmouseover="window.status='click me'>some link</a>

--bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top