これを最小の例に要約しました。
テスト.aspx
(コードビハインドは空です)
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="C3.Pages.Test" %>
<%@ Import Namespace="StackExchange.Profiling" %>
<!DOCTYPE html>
<body>
<%=MiniProfiler.RenderIncludes() %>
</body>
Global.asax
protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
var ignored = MiniProfiler.Settings.IgnoredPaths.ToList();
ignored.Add("WebResource.axd");
MiniProfiler.Settings.IgnoredPaths = ignored.ToArray();
}
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
これにより、次の結果が生成されます。
ここで何が起こっているのか、誰か説明してもらえますか? 1つだけ表示されることを期待しています。