0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ASP.Net MVC エラーメッセージを赤字で表示 CSS ValidationMessageFor

Last updated at Posted at 2022-01-20

##エラーメッセージを赤字で表示したい
どうやらエラーになるときは、勝手にクラスが付与されるのでそれを利用する

image.png

image.png

Site.css
.field-validation-error{
    color: #ff0000;
}

.field-validation-valid{
    display:none;
}

エラー文が出るHTMLファイルにCSSファイルを読み込むようにする

Send.cshtml
@model WebMVC.Models.Homes
@{
    ViewBag.Title = "受注登録画面②";
}
<link rel="stylesheet" href="../Content/Site.css" runat="server" />

##参考サイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?