HtmlHelperLinkExtensions.ActionLink 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ActionLink(IHtmlHelper, String, String) |
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。 |
ActionLink(IHtmlHelper, String, String, Object) |
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。 |
ActionLink(IHtmlHelper, String, String, String) |
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。 |
ActionLink(IHtmlHelper, String, String, Object, Object) |
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。 |
ActionLink(IHtmlHelper, String, String, String, Object) |
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。 |
ActionLink(IHtmlHelper, String, String, String, Object, Object) |
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。 |
ActionLink(IHtmlHelper, String, String)
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String) As IHtmlContent
參數
- helper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- actionName
- String
動作的名稱。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
ActionLink(IHtmlHelper, String, String, Object)
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::Object ^ routeValues);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, object routeValues);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, routeValues As Object) As IHtmlContent
參數
- helper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- actionName
- String
動作的名稱。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者,包含 IDictionary<TKey,TValue> 路由參數的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
ActionLink(IHtmlHelper, String, String, String)
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::String ^ controllerName);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, string controllerName);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, controllerName As String) As IHtmlContent
參數
- helper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- actionName
- String
動作的名稱。
- controllerName
- String
控制器的名稱。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
ActionLink(IHtmlHelper, String, String, Object, Object)
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, object routeValues, object htmlAttributes);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, routeValues As Object, htmlAttributes As Object) As IHtmlContent
參數
- helper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- actionName
- String
動作的名稱。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者,包含 IDictionary<TKey,TValue> 路由參數的實例。
- htmlAttributes
- Object
Object,包含 專案的 HTML 屬性。 或者,包含 IDictionary<TKey,TValue> HTML 屬性的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
ActionLink(IHtmlHelper, String, String, String, Object)
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, string controllerName, object routeValues);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, controllerName As String, routeValues As Object) As IHtmlContent
參數
- helper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- actionName
- String
動作的名稱。
- controllerName
- String
控制器的名稱。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者,包含 IDictionary<TKey,TValue> 路由參數的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。
適用於
ActionLink(IHtmlHelper, String, String, String, Object, Object)
傳回錨點 (< 包含 > 指定動作 URL 路徑的) 專案。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ActionLink(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ helper, System::String ^ linkText, System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent ActionLink (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper helper, string linkText, string actionName, string controllerName, object routeValues, object htmlAttributes);
static member ActionLink : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * string * obj * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ActionLink (helper As IHtmlHelper, linkText As String, actionName As String, controllerName As String, routeValues As Object, htmlAttributes As Object) As IHtmlContent
參數
- helper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- linkText
- String
錨定項目的內部文字。 必須不是 null
。
- actionName
- String
動作的名稱。
- controllerName
- String
控制器的名稱。
- routeValues
- Object
Object,包含路由的參數。 參數會透過反映來擷取,方法是檢查 的屬性 Object 。 這 Object 通常是使用 Object 初始化運算式語法所建立。 或者,包含 IDictionary<TKey,TValue> 路由參數的實例。
- htmlAttributes
- Object
Object,包含 專案的 HTML 屬性。 或者,包含 IDictionary<TKey,TValue> HTML 屬性的實例。
傳回
新的 IHtmlContent ,其中包含錨點專案。