次のような他の関数で BeginRequest イベントを処理したい:
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
this.BeginRequest += (new EventHandler(MyBeginRequest));
}
....
}
しかし、うまくいきませんでした!誰か教えてくれませんか?thx!