1.写在一个单独的类库中在web.config中进行配置
<httpModules> <add name="" type="类的全名称,程序集的名称"/> <!--程序集的名称可省略--> </httpModules>
2.在 Global.asax文件中进行配置
protected void Application_BeginRequest(object sender, EventArgs e){ 可执行代码 }