If I have the following :-
<asp:image height="54" width="54" runat="server" id="imgA" imageurl="/pic.jpg" />
when it get compiled, it comes out as :-
<img src="/pic.jpg" style="height:54;width=50;" id="imgA"/>
Whenever I put it through Google tools, it says to improve the page, I need to put the size which it expects it in the non-style format. Is there anyway to force the .NET compiler to compile to the non-style format so the result is :-
<img src="/pic.jpg" height="54" width="50" id="imgA"/>
or is the only way is to use img rather than asp:image ?