I cannot find any information on how to implement custom FormsAuthenticationModule.
Specifically, I want to implement a MyFormsAuthentication that mirrors most features of
FormsAuthenticationModule, or child of FormsAuthenticationModule
<httpModules>
...
<add name="FormsAuthentication"
type="System.Web.Security.FormsAuthenticationModule" />
...
</httpModules>
MyFormsAuthentication can be used by the element in web.config, instead of the default FormsAuthenticationModule:
<authentication mode="Forms" />
The reason is that I want to support the domains format below:
Set A
a.domain.com
a Go to the complete details ...