public static MvcHtmlString IncludeScript(this HtmlHelper helper, string key, string path)
 {
     return IncludeHeader(helper, key, path, ScriptFormat);
 }
 public static MvcHtmlString IncludeScript(this HtmlHelper helper, string path)
 {
     return IncludeScript(helper, path.ToLower(), path);
 }