I have the following code in a ASP.NET master page:
<div id="hyperlinkimage"><asp:HyperLink ID="SomeHyperLink" runat="Server" NavigateUrl="~/Pages/Dashboard.aspx" ImageUrl="~/images/some_image.jpg" BorderWidth="0px" BorderStyle="None"/></div>
However, this image still has a blue border in IE, but not Firefox. Do any of the erudite developers of StackO know of this issue or how to rectify it?
IE adds a border around images by default. If you don’t like this behaviour, just specify in your css something like this:
This has nothing to do with asp.net tho…