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