Subtext.Framework.UI.Skinning.ScriptElementCollectionRenderer.RenderScriptElement C# (CSharp) 메소드

RenderScriptElement() 공개 정적인 메소드

public static RenderScriptElement ( string scriptPath ) : string
scriptPath string
리턴 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