|
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
<div class="col-lg-12 control-section">
<div id="wrapper">
@Html.EJS().NumericTextBoxFor(model => model.value).Width("200px").Format("c2").Currency("EUR").Render()
<div>
@Html.ValidationMessageFor(model => model.value)
</div>
<div id="submitbutton">
@Html.EJS().Button("btn").Content("Post").Render()
</div>
</div>
</div>
} |
|
|