我正在尝试使用MVC-mini-profiler来处理webforms。
的NuGet
我已经安装了Nuget包。
PM> Install-Package MiniProfiler
头
我在我的网站的头部有这个。
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<%= MvcMiniProfiler.MiniProfiler.RenderIncludes() %>
DAL
我在一个函数中使用它作为POC。这不在Global.asax中(我不知道是否需要。)
profiler = MiniProfiler.Start();
using (profiler.Step("Im doing stuff"))
{
//do stuff here
}
MvcMiniProfiler.MiniProfiler.Stop();
结果
它在我的页面上呈现<div class="profiler-results left"></div>
标记,但它是空的。
如果我查看chrome控制台,我会看到404试图找到:http://example.com/mini-profiler-results?id=339d84a7-3898-429f-974b-64038462d59a&popup=1
问题
我错过了让/ mini-profiler-results链接起作用的步骤吗?
答案
我标记为答案的响应让我认为它与我的配置无关(这是真的)。我使用的是Umbraco 4.7.0。我不得不在web.config中的umbracoReservedUrls和umbracoReservedPaths中添加“〜/ mini-profiler-results”。
答案 0 :(得分:21)
安装NuGet包之后,以下页面对我来说非常有用:
<%@ Page Language="C#" %>
<%@ Import Namespace="MvcMiniProfiler" %>
<%@ Import Namespace="System.Threading" %>
<script type="text/c#" runat="server">
protected void Page_Load(object sender, EventArgs e)
{
MiniProfiler.Start();
using (MiniProfiler.Current.Step("I'm doing stuff"))
{
Thread.Sleep(300);
}
MiniProfiler.Stop();
}
</script>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<%= MiniProfiler.RenderIncludes() %>
</head>
<body>
<form id="Form1" runat="server">
<div>Hello World</div>
</form>
</body>
</html>