CoderJony

IIS

Installing Google Chrome and IIS Web Server on Windows Server

Installing Google Chrome and IIS Web Server on Windows Server

Installing Google Chrome and IIS Web Server are the 2 most basic tasks that I do whenever I create a new Windows Server machine either on the Cloud or On-Premises.

Read More By Ankush Jain
Get physical path of an IIS website using PowerShell

Get physical path of an IIS website using PowerShell

Below piece of code will give you physical path of an IIS website.

Read More By Ankush Jain
How to use live domain for your localhost websites running in IIS

How to use live domain for your localhost websites running in IIS

In this blog I am going to show you how you can use live domains for the websites which are running on your local IIS.

Read More By Ankush Jain
Solution- "PDB does not match image" issue in Post Build event in Visual Studio

Solution- "PDB does not match image" issue in Post Build event in Visual Studio

This error normally occurs when you are using Post Build event to move your .PDB & .DLL files from you current project's bin directory to some other project's bin directory. And when you run the project (in which you have copied the DLLs & PDBs), you find that you are no longer able to debug the project (whose DLLs & PDBs) you have copied from post build event.

Read More By Ankush Jain
What is Thread Starvation in ASP.NET applications?

What is Thread Starvation in ASP.NET applications?

In ASP.NET, web requests are processed by IIS. Once your request arrives at IIS, a thread (also known as Worker Thread) is taken from the CLR Thread Pool to process your request. Once your request's processing completes, that thread is given back to the Thread Pool.

Read More By Ankush Jain
Fix- You do not have permission to view this directory or page because of the access control list (ACL) configuration or encryption settings for this resource on the Web server.

Fix- You do not have permission to view this directory or page because of the access control list (ACL) configuration or encryption settings for this resource on the Web server.

Yesterday, I uploaded one of my ASP.NET MVC application on local IIS. I got above error message when I tried to access a web page that returns pdf file.

Read More By Ankush Jain