ASP.NET HTML 控件 RangeValidator
asp.net html 控件 rangevalidator
<!doctype html>
<html>
<body>
<form runat="server">
enter a date between 2005-01-01 and 2005-12-31:
<br>
<asp:textbox id="tbox1" runat="server" />
<br><br>
<asp:button text="submit" runat="server" />
<br><br>
<asp:rangevalidator
controltovalidate="tbox1"
minimumvalue="2005-01-01"
maximumvalue="2005-12-31"
type="date"
enableclientscript="false"
text="the date must be between 2005-01-01 and 2005-12-31!"
runat="server" />
</form>
</body>
</html>
<html>
<body>
<form runat="server">
enter a date between 2005-01-01 and 2005-12-31:
<br>
<asp:textbox id="tbox1" runat="server" />
<br><br>
<asp:button text="submit" runat="server" />
<br><br>
<asp:rangevalidator
controltovalidate="tbox1"
minimumvalue="2005-01-01"
maximumvalue="2005-12-31"
type="date"
enableclientscript="false"
text="the date must be between 2005-01-01 and 2005-12-31!"
runat="server" />
</form>
</body>
</html>
相关文章
- ASP.NET Web Pages 教程
- ASP.NET Web Pages WebMail 参考手册
- ASP.NET WebPages 帮助器参考手册
- ASP.NET Razor 语法
- ASP.NET Razor VB 变量
- ASP.NET Razor VB 循环和数组
- ASP.NET MVC Web 应用程序
- ASP.NET MVC 数据库
- ASP.NET MVC 模型
- ASP.NET MVC 参考手册
- ASP.NET 母版页
- ASP.NET RegularExpressionValidator 控件
- ASP.NET ImageButton 控件
- WebSecurity CurrentUserId 属性
- WebSecurity ChangePassword 方法
- WebSecurity ConfirmAccount 方法
- HTML InputImage
- Button
- ASP.NET HTML 控件 DataList
- ASP.NET HTML 控件 Table