Namespace: Cartella.Models
Assembly: CartellaDomainModels (in CartellaDomainModels.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public static string HtmlActionLink(
	this HtmlHelper helper,
	string linkHtml,
	string actionName,
	string controllerName,
	Object routeValues,
	Object htmlAttributes
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function HtmlActionLink ( _
	helper As HtmlHelper, _
	linkHtml As String, _
	actionName As String, _
	controllerName As String, _
	routeValues As Object, _
	htmlAttributes As Object _
) As String
Visual C++
[ExtensionAttribute]
public:
static String^ HtmlActionLink(
	HtmlHelper^ helper, 
	String^ linkHtml, 
	String^ actionName, 
	String^ controllerName, 
	Object^ routeValues, 
	Object^ htmlAttributes
)

Parameters

helper
Type: HtmlHelper
linkHtml
Type: System..::..String
actionName
Type: System..::..String
controllerName
Type: System..::..String
routeValues
Type: System..::..Object
htmlAttributes
Type: System..::..Object

Usage 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 or .

See Also