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