HtmlHelperEditorExtensions.Editor 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Editor(IHtmlHelper, String) |
使用編輯器範本傳回 的 |
Editor(IHtmlHelper, String, Object) |
使用編輯器範本並指定其他檢視資料,傳回 的 |
Editor(IHtmlHelper, String, String) |
使用編輯器範本傳回 的 |
Editor(IHtmlHelper, String, String, Object) |
使用編輯器範本並指定其他檢視資料,傳回 的 |
Editor(IHtmlHelper, String, String, String) |
使用編輯器範本和指定的 HTML 功能變數名稱,傳回 的 |
Editor(IHtmlHelper, String)
使用編輯器範本傳回 的 expression
HTML 標籤。 您可以使用 的 ModelMetadata 找到 expression
範本。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Editor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent Editor (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member Editor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Editor (htmlHelper As IHtmlHelper, expression As String) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
傳回
新的 IHtmlContent , < 包含輸入 > 元素 () 。
備註
例如,預設 Object 編輯器範本包含 < 值中每個屬性的 expression
標籤 > 和 < 輸入 > 元素。
範例包含 string.Empty
可識別目前模型的 , expression
以及 "prop"
識別目前模型的 「prop」 屬性。
自訂範本位於資料夾底下 EditorTemplates
。 資料夾名稱會區分大小寫的檔案系統。
適用於
Editor(IHtmlHelper, String, Object)
使用編輯器範本並指定其他檢視資料,傳回 的 expression
HTML 標籤。 您可以使用 的 ModelMetadata 找到 expression
範本。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Editor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::Object ^ additionalViewData);
public static Microsoft.AspNetCore.Html.IHtmlContent Editor (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, object additionalViewData);
static member Editor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Editor (htmlHelper As IHtmlHelper, expression As String, additionalViewData As Object) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- additionalViewData
- Object
匿名 Object 或 IDictionary<TKey,TValue> ,可包含其他檢視資料,這些資料會合並到 ViewDataDictionary<TModel> 為範本建立的實例中。
傳回
新的 IHtmlContent , < 包含輸入 > 元素 () 。
備註
例如,預設 Object 編輯器範本包含 < 值中每個屬性的 expression
標籤 > 和 < 輸入 > 元素。
範例包含 string.Empty
可識別目前模型的 , expression
以及 "prop"
識別目前模型的 「prop」 屬性。
自訂範本位於資料夾底下 EditorTemplates
。 資料夾名稱會區分大小寫的檔案系統。
適用於
Editor(IHtmlHelper, String, String)
使用編輯器範本傳回 的 expression
HTML 標籤。 您可以使用 或 expression
的 ModelMetadata 找到 templateName
範本。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Editor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ templateName);
public static Microsoft.AspNetCore.Html.IHtmlContent Editor (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string templateName);
static member Editor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Editor (htmlHelper As IHtmlHelper, expression As String, templateName As String) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- templateName
- String
用來建立 HTML 標籤的範本名稱。
傳回
新的 IHtmlContent , < 包含輸入 > 元素 () 。
備註
例如,預設 Object 編輯器範本包含 < 值中每個屬性的 expression
標籤 > 和 < 輸入 > 元素。
範例包含 string.Empty
可識別目前模型的 , expression
以及 "prop"
識別目前模型的 「prop」 屬性。
自訂範本位於資料夾底下 EditorTemplates
。 資料夾名稱會區分大小寫的檔案系統。
適用於
Editor(IHtmlHelper, String, String, Object)
使用編輯器範本並指定其他檢視資料,傳回 的 expression
HTML 標籤。 您可以使用 或 expression
的 ModelMetadata 找到 templateName
範本。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Editor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ templateName, System::Object ^ additionalViewData);
public static Microsoft.AspNetCore.Html.IHtmlContent Editor (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string templateName, object additionalViewData);
static member Editor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Editor (htmlHelper As IHtmlHelper, expression As String, templateName As String, additionalViewData As Object) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- templateName
- String
用來建立 HTML 標籤的範本名稱。
- additionalViewData
- Object
匿名 Object 或 IDictionary<TKey,TValue> ,可包含其他檢視資料,這些資料會合並到 ViewDataDictionary<TModel> 為範本建立的實例中。
傳回
新的 IHtmlContent , < 包含輸入 > 元素 () 。
備註
例如,預設 Object 編輯器範本包含 < 值中每個屬性的 expression
標籤 > 和 < 輸入 > 元素。
範例包含 string.Empty
可識別目前模型的 , expression
以及 "prop"
識別目前模型的 「prop」 屬性。
自訂範本位於資料夾底下 EditorTemplates
。 資料夾名稱會區分大小寫的檔案系統。
適用於
Editor(IHtmlHelper, String, String, String)
使用編輯器範本和指定的 HTML 功能變數名稱,傳回 的 expression
HTML 標籤。 您可以使用 或 expression
的 ModelMetadata 找到 templateName
範本。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ Editor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ templateName, System::String ^ htmlFieldName);
public static Microsoft.AspNetCore.Html.IHtmlContent Editor (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string templateName, string htmlFieldName);
static member Editor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function Editor (htmlHelper As IHtmlHelper, expression As String, templateName As String, htmlFieldName As String) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
這個 IHtmlHelper 方法擴充的實例。
- templateName
- String
用來建立 HTML 標籤的範本名稱。
傳回
新的 IHtmlContent , < 包含輸入 > 元素 () 。
備註
例如,預設 Object 編輯器範本包含 < 值中每個屬性的 expression
標籤 > 和 < 輸入 > 元素。
範例包含 string.Empty
可識別目前模型的 , expression
以及 "prop"
識別目前模型的 「prop」 屬性。
自訂範本位於資料夾底下 EditorTemplates
。 資料夾名稱會區分大小寫的檔案系統。