httpModules not working on iis7
- by roncansan
Hi,
I have the following module
public class LowerCaseRequest : IHttpModule
{
public void Init(HttpApplication context)
{
context.BeginRequest += new EventHandler(this.OnBeginRequest);
}
public void Dispose()
{
}
public void OnBeginRequest(Object s, EventArgs e)
{
…