ASPNet HyperLink StausBar question

  • Thread starter Thread starter Jason Huang
  • Start date Start date
J

Jason Huang

Hi,

In my ASPNet 2.0 C#.Net, I have a string manipulation for a HyperLink as

string strHLink= "<a href=\"" + HyperLink1.NavigateUrl.ToString() + "\">" +
HyperLink1.Text.ToString() + "</a>"

But how do I set the StatusBar to a special string for that strHLink to
represent the HyperLink in the .aspx.cs file?
Thanks for help.


Jason
 
you need to set it with javascript on onmouseover and onmouseout.

note: for security, most browsers are now blocking this action. phishers
are using this to show the a fake url with a link.

-- bruce (sqlwork.com)
 
Back
Top