HtmlHelper.ValidationMessage(String, String, Object, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果指定的 物件 expression
中有 ModelStateDictionary 錯誤,則傳回驗證訊息。
public:
virtual 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
override this.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,包含 專案的 tag
HTML 屬性。
或者,包含 IDictionary<TKey,TValue> HTML 屬性的實例。
- tag
- String
要包裝 message
在產生的 HTML 中的 標記。 其預設值為 ValidationMessageElement。
傳回
新的 IHtmlContent ,其中包含 tag
專案。 如果 expression
有效且用戶端驗證已停用,則為空白 IHtmlContent 。