public static JQueryHelper jQuery(this HtmlHelper htmlHelper) { var helper = htmlHelper.ViewContext.HttpContext.Items[jQueryHelperKey] as JQueryHelper; if (helper == null) { helper = new JQueryHelper(htmlHelper); htmlHelper.ViewContext.HttpContext.Items[jQueryHelperKey] = helper; } return helper; }
public static JQueryHelper jQuery(this HtmlHelper htmlHelper) { var helper = htmlHelper.ViewContext.HttpContext.Items[jQueryHelperKey] as JQueryHelper; if (helper == null) { helper = new JQueryHelper(htmlHelper); htmlHelper.ViewContext.HttpContext.Items[jQueryHelperKey] = helper; } return(helper); }