public static bool FormCheckValue(this HtmlHelper html, string name) => ViewUtils.FormCheckValue(html.GetRequest(), name);
public static string GetParam(this HtmlHelper html, string name) => ViewUtils.GetParam(html.GetRequest(), name);
public static string FormValue(this HtmlHelper html, string name, string defaultValue) => ViewUtils.FormValue(html.GetRequest(), name, defaultValue);
public static string[] FormValues(this HtmlHelper html, string name) => ViewUtils.FormValues(html.GetRequest(), name);
public static string Query(this HtmlHelper html, string name) => html.GetRequest().QueryString[name];
public static string FormValue(this HtmlHelper html, string name) => ViewUtils.FormValue(html.GetRequest(), name, null);
public static bool HasErrorStatus(this HtmlHelper html) => ViewUtils.HasErrorStatus(html.GetRequest());
public static string Form(this HtmlHelper html, string name) => html.GetRequest().FormData[name];
public static object GetItem(this HtmlHelper html, string key) => html.GetRequest().GetItem(key);
public static ResponseStatus GetErrorStatus(this HtmlHelper html) => ViewUtils.GetErrorStatus(html.GetRequest());
public static HtmlString NavButtonGroup(this HtmlHelper html, List <NavItem> navItems, NavOptions options) => ViewUtils.NavButtonGroup(navItems, options.ForNavButtonGroup().WithDefaults(html.GetRequest())).ToHtmlString();
public static HtmlString NavLink(this HtmlHelper html, NavItem navItem, NavOptions options) => ViewUtils.NavLink(navItem, options.ForNavLink().WithDefaults(html.GetRequest())).ToHtmlString();
public static HtmlString FormControl(this HtmlHelper html, Dictionary <string, object> inputAttrs, string tagName, InputOptions inputOptions) => ViewUtils.FormControl(html.GetRequest(), inputAttrs, tagName, inputOptions).ToHtmlString();
public static string UserProfileUrl(this HtmlHelper html) => html.GetRequest().GetSession().GetProfileUrl();
public static string SvgBaseUrl(this HtmlHelper html) => html.GetRequest().ResolveAbsoluteUrl(HostContext.AssertPlugin <SvgFeature>().RoutePath);