域名列表位于umbraco

| 我正在使用Umbraco 4.7。我们在一个安装中托管多个网站。有没有办法将所有域名作为列表获取。 马赫什     
已邀请:
        umbraco.library方法GetCurrentDomains()应该执行您要执行的操作。 http://our.umbraco.org/wiki/reference/umbracolibrary/getcurrentdomains     
        
public void GetDomains()
        {
            try
            {
                Node parent = new Node(-1);
                foreach (Node child in parent.Children)
                {
                    Domain[] domains = library.GetCurrentDomains(child.Id);
                    if (domains != null && domains.Length >= 0)
                    {
                        foreach (Domain d in domains)
                        {
                            Response.Write(d.Name.ToString() + \";\");
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message.ToString());
            }
        }
从此链接得到了答案     

要回复问题请先登录注册