Candor.Web.Mvc.MvcTagHtmlHelperExtension.BeginActionLink C# (CSharp) Method

BeginActionLink() public static method

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName ) : MvcTag
htmlHelper this
actionName string
return MvcTag
        public static MvcTag BeginActionLink(this HtmlHelper htmlHelper, string actionName)
        {
            return BeginActionLink(htmlHelper, actionName, null /* controllerName */, new RouteValueDictionary(), new RouteValueDictionary());
        }

Same methods

MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object>.IDictionary htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, object routeValues ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, object routeValues, object htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, string controllerName ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, string controllerName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, string controllerName, object routeValues, object htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension