私はすべてのaspxリクエストをインターセプトしようとしています。インターセプトは機能しますが、ページは空白のままです。私は何が欠けていますか?インターセプト* .aspx
namespace WebSite
{
public class Class1 : IHttpHandler
{
public bool IsReusable
{
get { return true; }
}
public void ProcessRequest(HttpContext context)
{
}
}
}
<system.webServer>
<handlers>
<add name="SampleHandler" verb="*"
path="*.aspx"
type="WebSite.Class1, WebSite"
resourceType="Unspecified" />
</handlers>
</system.webServer>
あなたはあなたの他の質問でいくつかの受け入れ答えを逃しています。 –