ASP.Net管理IIS7

來源:互聯網
上載者:User

老程式是管理IIS6,伺服器更新IIS7後不能使用。

在網上查詢到這個地址的介紹http://dflying.cnblogs.com/archive/2006/04/17/377276.html

不過按照上面的代碼不能產生。

ServerManager iisManager = new ServerManager();
iisManager.Sites.Add("NewSite", "http", "*:8080:", "d:\\MySite");
iisManager.Update(); 

 

顯示沒有 Update方法。

 

經過查詢MSDN,找到解決辦法,調試成功。

 

        /// <summary>
        /// IIS7建立網站
        /// </summary>
        /// <param name="name">網站名稱</param>
        /// <param name="Port">連接埠</param>
        /// <param name="domain">綁定網域名稱</param>
        public void CreateSiteByName(string name, string Port, string domain)
        {
            string path = @"C:\web\" + name + "site";

            // Validate the site name
            char[] invalid = SiteCollection.InvalidSiteNameCharacters();
            if (name.IndexOfAny(invalid) > -1)
            {
                Console.WriteLine("Invalid site name: {0}", name);
            }

            // Create the content directory if it doesn't exist.
            if (!System.IO.Directory.Exists(path))
            {
                System.IO.Directory.CreateDirectory(path);
            }

            // Create a new site using the new directory and update the config
            ServerManager manager = new ServerManager();
            try
            {   // Add this site.

                Site hrSite = manager.Sites.Add(name, "http", "*:" + Port + ":" + domain, path);
                hrSite.ServerAutoStart = true;
                manager.CommitChanges();
                Console.WriteLine("Site " + name + " added to ApplicationHost.config file.");
            }
            catch
            {
            }
        }

 

 

 

 程式發布的時候顯示有沒許可權。需要給C:\Windows\System32\inetsrv\config添加network service使用者權限才行。 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.