私の元のコードは次のとおりです。
<input type="text" class="form-control input-border-bottom" id="name" name="name" placeholder="Nombre" required >
モデルから呼び出すasp.netで変換したいのですが、クラスは呼び出しません:
@Html.TextBoxFor(model => model.Name, new { @class = "form-control, input-border-bottom", @id = "name", @name = "name", @placeholder = "Nombre" })
@Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })