Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In an ASP.NET application, I need to do some changes on every CSS file sent.

So I created an HttpHandler (inside the app itself), added:

<add verb="*" path="*.css" type="MyWebsite.CssTestHandler,MyWebsite"/>

to Web.config in system.web/httpHandlers and modified the handler like this:

public void ProcessRequest(HttpContext context)
{
    context.Response.Clear();
    context.Response.Write("Hello World");
    context.Response.End();
}

But CSS files are still just like they were before, so the handler is just ignored.

What I'm doing wrong?

share|improve this question
What version of IIS are you running? – Artem Koshelev Jun 28 '10 at 13:53
What version of IIS and what Mode (Classic, Integrated...only for IIS 7) is your app running in? – Justin Niessner Jun 28 '10 at 13:55
Sorry, forgotten this one. I'm debugging the app with Visual Studio through Local IIS 7.5 Web server (not a Visual Studio Development Server). – MainMa Jun 28 '10 at 13:59
Check the link in my answer. Latest section covers IIS 7.x running app in Integrated mode. – Artem Koshelev Jun 28 '10 at 14:02

3 Answers

up vote 1 down vote accepted

Check this page for instructions on all 3 cases of IIS version (6, 7 Classic pipeline and 7 Integrated pipeline): http://learn.iis.net/page.aspx/508/wildcard-script-mapping-and-iis-7-integrated-pipeline/

According to it, in case of Integrated pipeline, you need to add the following config parameter:

runAllManagedModulesForAllRequests="True"
share|improve this answer

You need to setup a wildcard map in IIS, see the following link:

http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/5c5ae5e0-f4f9-44b0-a743-f4c3a5ff68ec.mspx?mfr=true

This will cause the request for the CSS file to be served by ASP.NET rather than just IIS.

If the application serves very high traffic, consider setting this mapping for .css files only, or even better change the CSS data in the page rather than changing the file.

share|improve this answer

The App ignores your CSS files because IIS ignores CSS files.

It's not mapped to an executable in IIS. alt text

Try adding the .css extension and map it to the .NET dll.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.