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)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
返回一个定位点 (<> 包含指定操作的 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)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
返回一个定位点 (<> 包含指定操作的 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)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
返回一个定位点 (<> 包含指定操作的 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)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
返回一个定位点 (<> 包含指定操作的 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)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
返回一个定位点 (<> 包含指定操作的 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)
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
- Source:
- HtmlHelperLinkExtensions.cs
返回一个定位点 (<> 包含指定操作的 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 。