本文概述
- RangeValidator属性
- 例
它使我们可以检查用户输入是否在指定的上下边界之间。此范围可以是数字,字母字符和日期。
注意:如果输入控件为空,则不会执行任何验证。ControlToValidateproperty用于指定要验证的控件。 MinimumValue和MaximumValue属性用于设置控件的最小和最大边界。
RangeValidator属性
属性 | 描述 |
---|---|
AccessKey | 用于设置控件的键盘快捷键。 |
TabIndex | 控件的制表符顺序。 |
BackColor | 用于设置控件的背景色。 |
BorderColor | 用于设置控件的边框颜色。 |
BorderWidth | 用于设置控件边框的宽度。 |
Font | 用于设置控制文本的字体。 |
ForeColor | 用于设置控件文本的颜色。 |
Text | 它用于设置要为控件显示的文本。 |
ToolTip | 当鼠标悬停在控件上时, 它将显示文本。 |
Visible | 在窗体上设置控件的可见性。 |
Height | 用于设置控件的高度。 |
Width | 用于设置控件的宽度。 |
ControlToValidate | 它需要控制ID来验证。 |
ErrorMessage | 验证失败时, 用于显示错误消息。 |
Type | 用于设置控制值的数据类型。 |
MaximumValue | 用于设置范围的上限。 |
MinimumValue | 用于设置范围的下边界。 |
// RangeValidator.aspx
<
%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RangeValidator.aspx.cs"
Inherits="asp.netexample.RangeValidator" %>
<
!DOCTYPE html>
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<
title><
/title>
<
style type="text/css">
.auto-style1 {
height: 82px;
}
.auto-style2 {
width: 100%;
}
.auto-style3 {
width: 89px;
}
.auto-style4 {
margin-left: 80px;
}
<
/style>
<
/head>
<
body>
<
form id="form1" runat="server">
<
div class="auto-style1">
<
p class="auto-style4">
Enter value between 100 and 200<
br/>
<
/p>
<
table class="auto-style2">
<
tr>
<
td class="auto-style3">
<
asp:Label ID="Label2" runat="server" Text="Enter a value"><
/asp:Label>
<
/td>
<
td>
<
asp:TextBox ID="uesrInput"runat="server"><
/asp:TextBox>
<
asp:RangeValidator ID="RangeValidator1" runat="server" ControlToValidate="uesrInput"
ErrorMessage="Enter value in specified range" ForeColor="Red" MaximumValue="http://www.srcmini.com/199" MinimumValue="http://www.srcmini.com/101"
SetFocusOnError="True"Type=" Integer"><
/asp:RangeValidator>
<
/td>
<
/tr>
<
tr>
<
td class="auto-style3"> <
/td>
<
td>
<
br/>
<
asp:Button ID="Button2" runat="server" Text="Save"/>
<
/td>
<
/tr>
<
/table>
<
br/>
<
br/>
<
/div>
<
/form>
<
/body>
<
/html>
输出:
文章图片
当输入不在范围内时,它将引发错误消息。
文章图片
推荐阅读
- asp.net web表单正则表达式验证器
- asp.net web表单比较验证器
- asp.net web表单模型绑定
- asp.net html服务器控件
- asp.net web表单身份验证
- asp.net web表单事件处理
- asp.net web表单用户注册
- asp.net datagrid数据表格
- asp.net datalist数据列表