##エラーメッセージを赤字で表示したい
どうやらエラーになるときは、勝手にクラスが付与されるのでそれを利用する
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" />
##参考サイト