Wednesday, September 19, 2007

IIS 6.0 resources

There are some resources of IIS 6.0 I use. Below is a list:

Resources:

IIS.NET

IIS 6.0 Support Center

Tools:

Fiddler

IIS Diagnostics

IIS Resource Kit

List of Application Pools

c:\>iisapp

Backup/Restore IIS settings

c:\>iisback

Debugging global.asa

Put following code in global.asa.
Attach to w3c process and debug. Change value of MyLoop to False via QuickWatch and step through the code.

in Application_OnStart

Dim MyLoop

MyLoop=True

do while (MyLoop)

loop