我正在做类似于远程验证的操作,除了我已经通过jquery手动进行我的调用,并设置了我必须设置的任何内容。
现在我的问题是,如果我想告诉验证器一个特定的文本框是无效的(并阻止页面提交,突出显示文本框等)。我如何从代码中做到这一点?
@Html.LabelFor(m => Model.Slug) @Html.TextBoxFor(m => Model.Slug) <span id="UrlMsg" class="field-validation-error" style="display: none;"></span> if (error) { $('#UrlMsg').html('This name is already in use.').fadeIn('fast'); //what should I do here for the rest of the validation? }