Subtext.Framework.UI.Skinning.ScriptElementCollectionRenderer.CreateStylePath C# (CSharp) Method

CreateStylePath() private static method

private static CreateStylePath ( string skinTemplateFolder ) : string
skinTemplateFolder string
return string
        private static string CreateStylePath(string skinTemplateFolder)
        {
            string applicationPath = HttpContext.Current.Request.ApplicationPath;
            string path = (applicationPath == "/" ? String.Empty : applicationPath) + "/Skins/" + skinTemplateFolder + "/";
            return path;
        }