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 action,
	string controller,
	Dictionary<string, string> parameters
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function HtmlActionLink ( _
	helper As HtmlHelper, _
	linkHtml As String, _
	action As String, _
	controller As String, _
	parameters As Dictionary(Of String, String) _
) As String
Visual C++
[ExtensionAttribute]
public:
static String^ HtmlActionLink(
	HtmlHelper^ helper, 
	String^ linkHtml, 
	String^ action, 
	String^ controller, 
	Dictionary<String^, String^>^ parameters
)

Parameters

helper
Type: HtmlHelper
linkHtml
Type: System..::..String
action
Type: System..::..String
controller
Type: System..::..String
parameters
Type: System.Collections.Generic..::..Dictionary<(Of <(<'String, String>)>)>

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