Showing posts from March, 2017

How to fix Font Awesome WebFont woff2 not found

If you are getting 404 error (not found) for fontawesome-webfont.woff2?v=4.6.3 but you are definitely sure that it is there in your Visual Studio Project Here is how to fix it in IIS, you need to add the mime type in the config file for woff2: < system.webServer > < staticContent > < remove fileExtension = ".woff2" /> < mimeMap fileExtension = ".woff2" mimeType = "font/woff2" /> </ staticContent > </ system.webServer > This code t…

Understanding ASP.NET MVC 5 Application Lifecycle

This post shows the lifecycle of every ASP.NET MVC 5 application, beginning from receiving the HTTP request from the client to sending the HTTP response back to the client. It is designed both as an education tool for those who are new to ASP.NET MVC 5 and also as a reference for those who need to drill into specific aspects of the application. The entry point of MVC Request life cycle is URL Routing module, the incoming request from IIS pipeline is handed over to URL Routing module which analyses the request and looks up Routing table to fi…

Load More
That is All