I have a problem with an IMG ‘closing tag’ being omitted from code for a Container.
I've added the following line of code in the Container - links.ascx :
< h3 >< img alt="Links" border="0" src="<% =SkinPath %>images/links.gif" />< /h3 >
The problem is the IMG closing tag is being omitted when it is rendered within the browser, therefore it is not validating with w3
It is being rendered as follows:
< h3 >< img alt="Links" border="0" src="<% =SkinPath %>images/links.gif" >< /h3 >
Is there any way to prevent the IMG closing tag from being omitted so it is correct HTML markup and also validates correctly?
Thanks