ASP.NET中过滤器的两种写法
ASP.NET #过滤器2014-04-05 11:23
1.在一个单独的类库中在web.config中进行配置
<httpModules> <add name="" type="类的全名称,程序集的名称"/> <!--程序集的名称可省略--> </httpModules>
2.在Global.asax文件中进行配置
protected void Application_BeginRequest(object sender, EventArgs e) { // http://yige.org 可执行代码 }
相关文章
- ASP.NET中Eval的四种绑定方式 2014/04/05
- ASP.NET中ReportView与IE11兼容性解决方法 2014/04/05