当前位置: 代码迷 >> ASP.NET >> asp.net 操作 iis 建虚拟目录 报“未知名称”异常
  详细解决方案

asp.net 操作 iis 建虚拟目录 报“未知名称”异常

热度:2459   发布时间:2013-02-26 00:00:00.0
asp.net 操作 iis 建虚拟目录 报“未知名称”错误。
try
{
 
                                dirroot   =   new   DirectoryEntry( "IIS://localhost/W3SVC/1/ROOT ");  
DirectoryEntry     newVirDir     =     dirroot.Children.Add( "Webtest ", "IIsWebVirtualDir ");    
newVirDir.Invoke( "AppCreate ",true);    
newVirDir.CommitChanges();    
dirroot.CommitChanges();  
}
catch(Exception     abc)
{
this.Response.Write(abc);
}


abc   报“未知名称错误”   请问这是什么原因?

------解决方案--------------------------------------------------------
权限问题?