I am interested in creatign a httpmodule that will log all IIS requests
to SQL Server.
I am just wondering, how would I be able to log bad requests such as 404
etc? Would I have to change the custom error page to a page that could
alert my httpmodule?

Signature
Mick Walker
Software Engineer
http://www.mick-walker.co.uk
Michael Nemtsev, MVP - 29 Oct 2007 10:37 GMT
Hello Mick,
Just crete the handle for the HttpContext.Error and control your errorst
there
see sample there http://www.codegod.de/WebAppCodeGod/exception-handling-in-aspnet-AID375.aspx
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
MW> I am interested in creatign a httpmodule that will log all IIS
MW> requests to SQL Server.
MW>
MW> I am just wondering, how would I be able to log bad requests such as
MW> 404 etc? Would I have to change the custom error page to a page that
MW> could alert my httpmodule?
MW>
MW> http://www.mick-walker.co.uk
MW>
Peter Bromberg [C# MVP] - 29 Oct 2007 15:03 GMT
You don't need to do this. All you need to do is set up IIS to log to the
database with an ODBC connection:
http://support.microsoft.com/kb/245243
Don't reinvent the wheel!
-- Peter
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder: http://www.blogmetafinder.com
> I am interested in creatign a httpmodule that will log all IIS requests
> to SQL Server.
>
> I am just wondering, how would I be able to log bad requests such as 404
> etc? Would I have to change the custom error page to a page that could
> alert my httpmodule?