IIS

General ASP.NET Performance Best Practices (Part-1)

In this article, we will explore seven performance best practices that are recommended to improve the performance of our ASP.NET web applications or web sites. As you progress and apply the performance-enhancing techniques to the ASP.NET applications, you will notice a decrease in its page load times, and a reduction in the overall page weight of each page in the ASP.NET web site or web application. Each technique is a building block that will make your pages lighter and load times quicker. IIS plays a big role in this part of the book, and yo…

404 Error - When Browsing Page Manually in React App

If you are deploying a react app to IIS, you may run into a 404 error when you try to browse the URL manually or if you try to refresh the page.  Here are the steps to solve this issue: First, create a web.config file using Notepad++ Then add the following syntax to the web.config: <? xml version= "1.0" ?> < configuration > < system.webServer > < rewrite > < rules > < rule name = "React Routes" stopProcessing = "true" > < mat…

Load More
That is All