Real Root URL March 3, 2016
Posted by juanpablo1manrique in SharePoint2013.Tags: SharePoint
trackback
Hola,
Algo muy util … para cuando se trabaja con SharePoint, y sitecollections
string rootURL = SPContext.Current.Site.RootWeb.Url;
Regex regexObj = new Regex(@”^https?\:\/\/([^\/?#]+)(?:[\/?#]|$)”);
var match = regexObj.Match(rootURL);
rootURL = match.Value;
Saludos
Comments»
No comments yet — be the first.