コード例 #1
0
        private string GetFullBlogPageUrl(Guid blogPageId)
        {
            var pageUrl = string.Empty;

            if (blogPageId != Guid.Empty)
            {
                pageUrl = BlogFacade.GetPageUrlById(blogPageId);
                if (!string.IsNullOrEmpty(pageUrl))
                {
                    pageUrl = BlogFacade.GetFullPath(pageUrl);
                }
            }
            return(pageUrl);
        }