using System;
using System.Web; 
namespace MyModule
{
public class MyModule : IHttpModule 
{
public void Init(HttpApplication application) 

application.BeginRequest += (new 
EventHandler(this.Application_BeginRequest));
application.EndRequest += (new 
EventHandler(this.Application_EndRequest));
}
private void Application_BeginRequest(Object source, EventArgs e) 
{
HttpApplication Application = (HttpApplication)source;
HttpResponse Response=Application.Context.Response;
Response.Write("<h1>Beginning of Request</h1><hr>");
}
private void Application_EndRequest(Object source, EventArgs e) 
{
HttpApplication application = (HttpApplication)source;
HttpResponse Response=Application.Context.Response;????为什么这里找不到类型或命名空间名称“Application”(是否缺少 using 指令或程序集引用?) Response.Write("<h1>End of Request</h1><hr>");
}        
public void Dispose() 
{
}
}
}