zoukankan      html  css  js  c++  java
  • C# 增加 IIS 默认主页文档

    void Main()
    {
        using (ServerManager serverManager = new ServerManager())
        {
            var config = serverManager.GetWebConfiguration("SGSM");
            ConfigurationSection defaultDocumentSection = config.GetSection("system.webServer/defaultDocument");
            defaultDocumentSection["enabled"] = true;
            ConfigurationElementCollection filesCollection = defaultDocumentSection.GetCollection("files");
            ConfigurationElement addElement = filesCollection.CreateElement("add");
            addElement["value"] = @"myhome.html";
            filesCollection.AddAt(0, addElement);
    
            serverManager.CommitChanges();
        }
    
        using (ServerManager serverManager = new ServerManager())
        {
            var webConfig = serverManager.GetWebConfiguration("SGSM");
            var section = webConfig.GetSection("system.webServer/defaultDocument");
    
            foreach (ConfigurationElement item in section.GetCollection("files"))
            {
                var x = item["value"];
                Console.WriteLine(x);
            }
        }
    }
    
    // Define other methods and classes here
  • 相关阅读:
    毛皮立方体
    APPLE buSinEss
    #4613. problem C
    #4614. problem B
    idiots
    熊猫(i)
    圆盘自动机 cell
    小L的占卜
    有趣的数(number)
    「JOISC 2015 Day 1」卡片占卜
  • 原文地址:https://www.cnblogs.com/nanfei/p/13953288.html
Copyright © 2011-2022 走看看