November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
string path = "/templates/Intranet/Pages/ImageUpload/";
System.Collections.ICollection col = (System.Collections.ICollection)EPiServer.Web.FriendlyUrlRewriteProvider.UnTouchedPaths;
lock (col.SyncRoot)
{
EPiServer.Web.FriendlyUrlRewriteProvider.UnTouchedPaths.Add(path);
}
And true enough, when I loop through the IList (System.Collections.IList)EPiServer.Web.FriendlyUrlRewriteProvider.UnTouchedPaths
anywhere inside my app, I find the path in there.
But EPiServer.Web.FriendlyUrlRewriteProvider.IsFurlEnabled
still displays true when I am on a page inside the path, and the component does not still load properly.
Am I doing something wrong?
/Marten