Is there a good way to exclude certain pages from using a HTTP module?
I have an application that uses a custom HTTP module to validate a session. The HTTPModule is
You could use an HTTPHandler instead of an HTTPModule. Handlers let you specify a path when you declare them in Web.Config.
If you must use an HTTPModule, you could just check the path of the request and if it's one to be excluded, bypass the validation.