One of the possible way of writing an ASP.NET handler that works like an ISAPI filter- that is ...

Q

One of the possible way of writing an ASP.NET handler that works like an ISAPI filter- that is ...

✍: Guest

A

One of the possible way of writing an ASP.NET handler that works like an ISAPI filter- that is, that sees requests and responses and modifies them also, is by,
* writing a module that extends FormsAuthenticatonModule and using it
* writing a component class that extends HttpModuleCollection and using it
* writing an HTTP module-a Class that implements IhttpModule and registering it in Web.Config
* All of the above


writing an HTTP module-a Class that implements IhttpModule and registering it in Web.Config

2014-08-25, 1683👍, 0💬