1: public static IHtmlString BeginScript(this HtmlHelper htmlHelper)
2: {
3: return new HtmlString("<script type=\"text/javascript\">");
4: }
5:
6: public static IHtmlString EndScript(this HtmlHelper htmlHelper)
7: {
8: return new HtmlString("</script>");
9: }