3

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() はマスター ページにあります。

助けてください!

4

1 に答える 1

1

これを挿入してデバッグする必要があると思います。

protected void Application_BeginRequest()
{
//    if (Request.IsLocal)
    {
        MiniProfiler.Start();
    } 
}
于 2012-11-20T14:51:02.647 に答える