Get IIS site name from for an ASP.NET website

后端 未结 6 1247
长发绾君心
长发绾君心 2021-02-02 05:59

In my ASP.NET web app I\'d like to look up the name it was given when it was created in IIS, which is unique to the server. I\'d not interested in the domain name for the web si

相关标签:
6条回答
  • 2021-02-02 06:10

    Here is a related post in retrieving the site Id.

    Here some code that might work for you:

    using System.DirectoryServices;
    using System;
    
    public class IISAdmin
    {
       public static void GetWebsiteID(string websiteName)
       {
          DirectoryEntry w3svc = new DirectoryEntry("IIS://localhost/w3svc");
    
         foreach(DirectoryEntry de in w3svc.Children)
         {
            if(de.SchemaClassName == "IIsWebServer" && de.Properties["ServerComment"][0].ToString() == websiteName)
            {
               Console.Write(de.Name);
            }
    
         }
    
      }
      public static void Main()
      {
         GetWebsiteID("Default Web Site");
      }
    

    }

    Here's the link to the original post.

    I'm not sure if it will work on IIS7, but if you install the IIS6 compatibility components for IIS7 it should work.

    0 讨论(0)
  • 2021-02-02 06:11
    System.Web.Hosting.HostingEnvironment.ApplicationHost.GetSiteName();
    
    0 讨论(0)
  • 2021-02-02 06:18

    You are looking for ServerManager (Microsoft.Web.Administration) which provides read and write access to the IIS 7.0 configuration system.

    Iterate through Microsoft.Web.Administration.SiteCollection, get a reference to your website using the Site Object and read the value of the Name property.

    // Snippet        
    using (ServerManager serverManager = new ServerManager()) { 
    
    var sites = serverManager.Sites; 
    foreach (Site site in sites) { 
             Console.WriteLine(site.Name); // This will return the WebSite name
    }
    

    You can also use LINQ to query the ServerManager.Sites collection (see example below)

    // Start all stopped WebSites using the power of Linq :)
    var sites = (from site in serverManager.Sites 
                where site.State == ObjectState.Stopped 
                orderby site.Name 
                select site); 
    
            foreach (Site site in sites) { 
                site.Start(); 
            } 
    

    Note : Microsoft.Web.Administration works only with IIS7.

    For IIS6 you can use both ADSI and WMI to do this, but I suggest you to go for WMI which is faster than ADSI. If using WMI, have a look at WMI Code Creator 1.0 (Free / Developed by Microsoft). It will generate the code for you.

    HTH

    0 讨论(0)
  • 2021-02-02 06:19

    You will need to do the ServerManager.OpenRemote("serverName") first when connecting to a remote server.

    Basically doing something like this

                using (ServerManager srvMgr = ServerManager.OpenRemote("serverName"))
                {
    
                }
    

    see msdn help

    0 讨论(0)
  • 2021-02-02 06:24

    As @belugabob and @CarlosAg already mentioned I'd rather use System.Web.Hosting.HostingEnvironment.SiteName instead of System.Web.Hosting.HostingEnvironment.ApplicationHost.GetSiteName() because IApplicationHost.GetSiteName method is not intended to be called directly! (msdn)

    So you're better off using HostingEnvironment.SiteName property! (msdn)

    I think this should be the correct answer in respect to the documentation ;)

    0 讨论(0)
  • 2021-02-02 06:32

    You can use below code

    private string WebsiteName()
    {
        string websiteName = string.Empty;
        string AppPath = string.Empty;
        AppPath = Context.Request.ServerVariables["INSTANCE_META_PATH"];
        AppPath = AppPath.Replace("/LM/", "IIS://localhost/");
        DirectoryEntry root = new DirectoryEntry(AppPath);
        websiteName = (string)root.Properties["ServerComment"].Value;
        return websiteName;
    }
    
    0 讨论(0)
提交回复
热议问题