共用方式為


IHtmlHelper.ValidationMessage(String, String, Object, String) 方法

定義

如果指定的 expression 物件中有 ModelStateDictionary 錯誤,則傳回驗證訊息。

public:
 Microsoft::AspNetCore::Html::IHtmlContent ^ ValidationMessage(System::String ^ expression, System::String ^ message, System::Object ^ htmlAttributes, System::String ^ tag);
public Microsoft.AspNetCore.Html.IHtmlContent ValidationMessage (string expression, string message, object htmlAttributes, string tag);
abstract member ValidationMessage : string * string * obj * string -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function ValidationMessage (expression As String, message As String, htmlAttributes As Object, tag As String) As IHtmlContent

參數

expression
String

相對於目前模型的運算式名稱。

message
String

要顯示的訊息。 如果 null 為 或空白,方法會從 ModelStateDictionary 物件擷取錯誤字串。 訊息一律會顯示,但用戶端驗證可能會更新相關聯的 CSS 類別。

htmlAttributes
Object

Object,其中包含 專案的 HTML 屬性 tag 。 或者, IDictionary<TKey,TValue> 包含 HTML 屬性的實例。

tag
String

要包裝 message 在所產生 HTML 中的 標記。 其預設值為 ValidationMessageElement

傳回

新的 IHtmlContent ,包含 tag 專案。 如果 expression 有效且用戶端驗證已停用,則為空白 IHtmlContent

適用於