DCSIMG
IIS - David Birin's blog

Browse by Tags

How to create an application in IIS6 using C#
Before the IIS7 era, we had no API for directly manipulating IIS, but we still needed to perform some actions like creating a virtual directory or an application (mostly used in installations). Creating an application using the IIS GUI is done in the following way:   Creating it in code is a more complex task which is dived into 3 parts: 1. Finding the website in the IIS which we want to create the application underneath: /// <summary> /// This function looks for the path of a web site...