我有一个 Umbraco 5 MVC3 项目,在那里我发现那里到处都是空白。在调查时,我发现在 Firefox Web 开发人员工具中“查看生成的源代码”时,我的 HTML 看起来非常糟糕。例如,它删除了我的 doctype 声明并将我的元标记和内容移出脑海。简化代码:
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>@ViewBag.Title</title>
<link rel="stylesheet" href="@Url.Content("~/Content/Styles/style.css")"/>
</head>
<body id="" class="default">
<div id="wrapper">
<header id="banner" class="body">
<a class="ir logo" href="/"><h1>Christian </h1></a>
<ul class="share">
<li id="facebook"><a class="ir" href="http://www.facebook.com/sharer.php?u=@Request.Url.AbsoluteUri">Facebook</a></li>
<li id="twitter"><a class="ir" href="http://twitter.com/share?text=Christian">Twitter</a></li>
</ul>
@Html.Partial("nav")
</header>
<section id="content" class="body">
@RenderBody()
</section>
</div>
<script src="@Url.Content("~/Scripts/plugins.js")"></script>
<script src="@Url.Content("~/Scripts/script.js")"></script>
</body>
</html>
输出是这样开始的
<html class="no-js" lang="en"><head></head><body id="" class="default">