I'm trying to implement a custom SessionIDManager very similar this example.
I'm putting this in the web.config similar to how they showed in the example:
<system.web>
<httpModules>
<add name="SessionID"
type="ProjectName.WebUI.Models.CustomSessionIDManager" />
</httpModules>
// --snip--
</system.web>
However when attempting to load the website I am getting the configuration error:
ProjectName.WebUI.Models.CustomSessionIDManager does not implement IHttpModule.
If I remove that part of the web.config, the website loads, but the overridden part of the custom SessionIDManager does not get run.
How do I properly tell the web.config to use my custom SessionIDManager?