如何使用Bootstrap Validator提交表单
本文关键字:提交 表单 Validator Bootstrap 何使用 | 更新日期: 2023-09-27 18:28:43
我正在使用http://bootstrapvalidator.com/在bootstrap asp.net项目中使用visualstudio。我遇到的问题是,我永远无法像在示例中那样让验证按钮进行实际验证,当我开始在文本框中键入时,它可以很好地验证,但当我点击下面的按钮时,它永远不会验证。
另一个问题是,我不知道如何调用我的c#方法,它将在验证成功后从文本框中获得值,我可以在单击按钮时调用我的方法,但我希望它在验证成功之后立即发生。
我正在寻找的是一个简单的例子,如何使提交按钮验证字段,然后调用我的c#方法,该方法将从输入中读取值。
我在网上连一个例子都找不到,而且我对javascript也不太了解。
这是一些我有的测试代码
<div class="form-group" id="nameEmail2">
<div class="form-group">
<label for="inputContactName" class="col-sm-5 control-label">Contact Name </label>
<div class="col-sm-7">
<input type="text" class="form-control" name="fullName1" id="TextBox1" placeholder="Contact Name" maxlength="50"/>
</div>
</div>
<div class="form-group">
<label for="inputContactEmail" class="col-sm-5 control-label">Contact Email <b>*</b></label>
<div class="col-sm-7">
<input type="text" class="form-control" name="email1" id="TextBox2" placeholder="Contact Email" maxlength="50"/>
</div>
</div>
<div class="form-group">
<div class="col-sm-5 col-sm-offset-3">
<button type="submit" runat="server" onserverclick="submitValidate" class="btn btn-default">Validate</button>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
$('#nameEmail2').bootstrapValidator({
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
fullName1: {
validators: {
notEmpty: {
// enabled is true, by default
message: 'The full name is required and cannot be empty'
},
stringLength: {
enabled: true,
min: 8,
max: 40,
message: 'The full name must be more than 8 and less than 40 characters long'
},
regexp: {
enabled: false,
regexp: /^[a-zA-Z's]+$/,
message: 'The full name can only consist of alphabetical, number, and space'
}
}
},
email1: {
validators: {
emailAddress: {
message: 'The value is not a valid email address'
}
}
}
}
});
});
</script>
我已经删除了大部分asp对象,服务器上几乎没有任何东西运行,但这对我的代码绑定方法没有多大帮助
protected void submitValidate(object sender, EventArgs e)
{
string contactName = Request.Form["fullName1"];
string email = Request.Form["email1"];
System.Diagnostics.Debug.Write("test",email);
}
找到了我自己问题的答案http://thuyvk.com/article/validate-form-su-dung-bootstrapvalidator-cho-website-aspnet-224小心谷歌翻译,会把代码翻译成一些随机的html代码