程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#中操作IIS 7.0(2)

C#中操作IIS 7.0(2)

編輯:關於C語言
個是刪除站點的方法,比較簡單。

DeleteSite /// <summary>
/// Delete an existent web site.
/// </summary>
/// <param name="siteName">Site name.</param>
public static void DeleteSite(string siteName)
{
    using (ServerManager mgr = new ServerManager())
    {
        Site site = mgr.Sites[siteName];
        if (site != null)
        {
            mgr.Sites.Remove(site);
            mgr.CommitChanges();
        }
    }
}

然後是對虛擬目錄的操作,包括創建和刪除虛擬目錄,都比較簡單。

CreateVDir public static void CreateVDir(string siteName, string vDirName, string physicalPath)
{
    using (ServerManager mgr = new ServerManager())
    {
        Site site = mgr.Sites[siteName];
        if (site == null)
        {
            throw new ApplicationException(String.Format("Web site {0} does not exist", siteName));
        }
        site.Applications.Add("/" + vDirName, physicalPath);
        mgr.CommitChanges();
    }
}

DeleteVDir public static void DeleteVDir(string siteName, string vDirName)
{   
    using (ServerManager mgr = new ServerManager())
    {
        Site site = mgr.Sites[siteName];
        if (site != null)
        {
            Microsoft.Web.Administration.Application app = site.Applications ["/" + vDirName];
            if (app != null)
            {
                site.Applications.Remove(app);
                mgr.CommitChanges();
            }
        }
    }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved