Introduction
You may got following error while browsing your ASP.NET website (in IIS 7/7.5/8/8.5), which reads, "HTTP Error 404.17 : The requested content appears to be script and will not be served by the static file handler"
see below error snap
Causes
There are many causes behind this problem
1. HTTP Handler configured to handle the request has certain preconditions set, but its Application pool does not meet some or all of these preconditions, in simple words Application pool's .NET framework is not set properly to the application in which it is compiled (If my application developed in 4.5 and I am attaching application pool with framework 2.0)
2. If application is migrated from IIS 6 then My Application pool should running in Classic Mode, with enable 32 bit mode options
3. Required .NET framework has restriction in 'ISAPI and CGI restrictions' in IIS
Resolution
Problem can be resolved by following steps
1. Open IIS manager (Go to start - Run - type 'INETMGR')
2. Select the Server Name (System Name)
3. Select ISAPI and CGI restrictions in right side pane
4. Allow the Not Allowed restrictions for required framework
see below snippet, to know how to allow ISAPI and CGI restrictions
5. If your required framework will not exist in ISAPI and CGI restrictions then you need to re-registered framework with following command
6. Go to Start - Run put following command in Run window
C:\Windows\Microsoft.NET\Framework\v4.0.30319 \aspnet_regiis -i
see below snippet to know how to run command from Run window
run command here i have given example for .NET fremework 4.0, you cna use same command for any .NET framework
7. Set required .NET version in application pool
8. Enable 32-bit Application in application pool
9. Restart IIS
That's all, Now try to browse the same website, we have resolved the bug.