MiniProfiler适用于本地计算机,而不适用于QA

时间:2012-11-20 14:45:53

标签: mvc-mini-profiler

我使用NuGet安装MiniProfiler和MiniProfiler.MVC3插件。 http://miniprofiler.com/

我已经尝试了网站建议的所有内容,包括在web.config中添加:

<handlers>
<add name="MiniProfiler" path="mini-profiler-resources/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
</handlers>

但是,它仍然不会显示在页面上。事实上,包括似乎根本没有呈现。是的,MiniProfiler.RenderIncludes()在我的母版页上。

请帮忙!

1 个答案:

答案 0 :(得分:1)

我认为你需要插入它并尝试调试。

protected void Application_BeginRequest()
{
//    if (Request.IsLocal)
    {
        MiniProfiler.Start();
    } 
}