Returns an anchor element (a element) that contains the virtual path of the specified action.
Namespace:
RainWorx.FrameWorx.MVC.HelpersAssembly: RainWorx.FrameWorx.MVC (in RainWorx.FrameWorx.MVC.dll) Version: 3.5
Syntax
C#
public static MvcHtmlString ActionLink( this HtmlHelper htmlHelper, MvcHtmlString linkText, string actionName, string controllerName, Object routeValues, Object htmlAttributes )
Parameters
- htmlHelper
- Type: HtmlHelper
an instance of the HtmlHelper class - linkText
- Type: MvcHtmlString
The inner text of the anchor element. - actionName
- Type: SystemString
The name of the action. - controllerName
- Type: SystemString
The name of the controller. - routeValues
- Type: SystemObject
An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created using object initializer syntax. - htmlAttributes
- Type: SystemObject
An object that contains the HTML attributes to set for this element.
Return Value
Type: MvcHtmlStringUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type HtmlHelper. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also