1、C#操作IIS5和IIS6有什么区别吗?
2、我用以下代码创建虚礼目录成功了,为什么在IIS下看不到虚礼目录呢?我IIS是5.1
            DirectoryEntry rootfolder = new DirectoryEntry("IIS://localhost/W3SVC/1/ROOT");
            DirectoryEntry newVirDir = rootfolder.Children.Add("Aspcn1", "IIsWebVirtualDir");
            newVirDir.Invoke("AppCreate", true);
            newVirDir.CommitChanges();
            rootfolder.CommitChanges();
为什么我知道创建成功呢?因为我再次运行上面的代码会提示我说
"当文件已存在时,无法创建该文件。 (Exception from HRESULT: 0x800700B7)"