Bug in ASP.NET rendering hyperlink
Or am I missing something ? Suppose you have something like this in your ASP.NET code:
<asp:HyperLink runat="server" id="RssLink" ImageUrl="/Images/xml.gif" />
Which should be rendered as html img inside html a href link. You go to c# code and set ToolTip property to the hyperlink. BTW, any other elegant way to create html img alt attribute is appreciated. The whole thing renders attribute title for both href link and image. And it is not XHTML compliant of course. Alt attribute is mandatory for img in xhtml transitional. It bothered me in ASP.NET 1.1, but in 2.0 rendering is supposed to be XHTML compliant. Any ideas ?
Sunday, February 5, 2006 2:16 AM