Skip to content

Instantly share code, notes, and snippets.

@SitefinityGuru
Created June 22, 2012 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SitefinityGuru/2975615 to your computer and use it in GitHub Desktop.
Save SitefinityGuru/2975615 to your computer and use it in GitHub Desktop.
Get Page Node Url From Guid
public string GetPageUrl(Guid PageID)
{
var mgr = PageManager.GetManager();
var pageNode = mgr.GetPageNode(PageID);
return pageNode.GetFullUrl();
}
@SitefinityGuru
Copy link
Author

include the namespace: Telerik.Sitefinity.Modules.Pages

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment