我正在尝试快速搭建一个网站,因此我寻求了Twitter 的 Bootstrap 项目的帮助,这对于像我这样的非设计师来说是一个救命稻草。
我现在正在尝试启动并运行 MiniProfiler(它看起来很棒!)但是在显示它时遇到了一些麻烦,我希望有人能帮助我发现我的(可能很简单)错误。这是最基本的基本场景,据我所知,我正在遵循 MiniProfiler 站点的建议。
全球.asax:
using MvcMiniProfiler;
...
protected void Application_BeginRequest()
{
//profile for every request while site is in dummy mode
MiniProfiler.Start();
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
我试图描述的控制器:
public ActionResult About()
{
var profiler = MiniProfiler.Current;
using (profiler.Step("Wassappp?"))
{
ViewBag.Title = "Heyyy there! Testing MiniProfiler.";
using (profiler.Step("Doing a pointless for loop!"))
{
int result;
for (int i = 0; i <= 10; i++)
{
result = i;
}
}
}
return View();
}
我的 _layout.cshtml 页面的相关部分:
@using MvcMiniProfiler;
...
<head>
<meta charset="utf-8">
<title>@ViewBag.Title</title>
<meta name="description" content=""/>
<meta name="author" content=""/>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<link href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css" rel="stylesheet">
<link href="@Url.Content("~/Content/site_bootstrap.css")" rel="stylesheet">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
@MvcMiniProfiler.MiniProfiler.RenderIncludes()
</head>
有任何想法吗?该站点显示完全正常,但没有任何类型的 MiniProfiler 操作。
提前感谢您提供的任何帮助!