12

在此处输入图像描述如何在 asp.net 网站中使用 miniprofiler(不适用于 MVC)?MVC 有很多资源,但我找不到任何网站。

感谢亚历克斯。现在它适用于 asp.net 网站。但我无法理解它显示的内容。我没有在方法中编写任何代码。见下图。

代码如下,我为其运行了探查器。

protected void Page_Load(object sender, EventArgs e)
{
    using (MiniProfiler.Current.Step("test"))
    {
        Page.Title = "12345";
    }
}
4

1 回答 1

27

miniprofiler.com

PM> Install-Package MiniProfiler

在你的global.asax

using StackExchange.Profiling;
...    
protected void Application_BeginRequest()
{
    if (Request.IsLocal)
    {
        MiniProfiler.Start();
    } 
}

protected void Application_EndRequest()
{
    MiniProfiler.Stop();
}

然后在您的母版页中的某个位置:

<%= StackExchange.Profiling.MiniProfiler.RenderIncludes() %>

这应该足够开始了。

于 2013-02-26T11:08:51.983 回答