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

RenderScriptElement() public static method

public static RenderScriptElement ( string scriptPath ) : string
scriptPath string
return string
        public static string RenderScriptElement(string scriptPath)
        {
            return "<script" +
                   RenderScriptAttribute("type", "text/javascript") +
                   RenderScriptAttribute("src", scriptPath) +
                   "></script>" + Environment.NewLine;
        }

Same methods

ScriptElementCollectionRenderer::RenderScriptElement ( string skinPath, Script script ) : string