The reason why the visual studio is losing its education is because you mix css code and server code as shown below.
<style type="text/css">
.someclass
{
background-image: url(<%=Url.Content("~/Content/Images/messageIcon.gif")%>);
}
</style>
You must separate your css from your code.
css, css, , , , Url.Content(~)
.someclass
{
background-image: url(../Images/messageIcon.gif);
}