How would I change or mask the URL when I hover over a hyperlink.
I was able to change the color but not the URL.
StatementsHyperlink.Attributes.Add("onmouseover", "this.style.color=\"red\"");
How would I change or mask the URL when I hover over a hyperlink.
I was able to change the color but not the URL.
StatementsHyperlink.Attributes.Add("onmouseover", "this.style.color=\"red\"");
Personally I would handle changing the styling with CSS hover on hyperlinks, you could set the text colour and the background to be the same shade of grey to mask the url.
Do you have an example effect you are looking for?