我使用带有验证的 html 页面。但是当我点击输入提交按钮页面被刷新。但是如何限制刷新页面。我的示例代码是:
<div >
@Html.LabelFor(m => m.1)
@Html.TextBoxFor(m => Model.1, new { @id = "student", @class = "test" })
<input type="submit" value="click valid" onclick="button();" />
<div> <span style="color:Red"> @Html.ValidationMessageFor(m => m.1) </span>
</div>
</div>