示例#1
0
        public static string RegisterScript(this HtmlHelper html, string id, string script, List <string> dependencies)
        {
            ExtendedController clr = html.ViewContext.Controller as ExtendedController;

            clr.RegisterScript(id, script, dependencies);
            return("");
        }
示例#2
0
        public static string RegisterScript(this HtmlHelper html, string script)
        {
            ExtendedController clr = html.ViewContext.Controller as ExtendedController;

            clr.RegisterScript(script);
            return("");
        }