When trying to open email details containing HTML tags in a div control on an ASP.Net .aspx page, the page appears messy and only the inner HTML contents are visible. Is there a solution to this issue?
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<form >
<!-- Outer HTML contents... -->
<div id="dvViewMailReadOnly" style="overflow:auto; width:100%;height:auto;">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<img src="http://click.email.skype...>
</body>
</html>
</div>
</form>
</body>
</html>
The email contents appear dynamically within dvViewMailReadOnly.