Modifying the HTTP Response Using Filters
|
feedback
|
|
I think the question relates to ASP.NET, not Java. This might help: | |||
|
feedback
|
|
These kind of components are called filters in the Java world. They are capable of modifying requests/responses before they are dispachted to the handler component resp. before the response is delivered to the client. In ASP.NET these kind of components are called HTTP Modules. | |||
|
feedback
|
|
Historically, response filters have been the way to do this in ASP.NET. However, they suffer from some serious cache-related issues, both in IIS6 (tougher to notice) and IIS7. This question includes a KB article with more detail. | |||
|
feedback
|
|
Use:
Quoted from here. | ||||
feedback
|