一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

asp.net日期控件验证代码

时间:2011-05-20 编辑:简简单单 来源:一聚教程网

asp教程.net日期控件验证代码

<%@ Page Language=VB Debug=true %>


Comparing a Field to a Date Data Type using the CompareValidator Control





Please enter a Date:

    id="txtDate"
    runat=server
/>
    id="cvCheckDate"
    controltovalidate="txtDate"
    operator="DataTypeCheck"
    type="Date"
    runat="server"
>
    You must enter a date!



    id="butOK"
    text="OK"
    type="Submit"
    runat="server"
/>



           
      
看一个vb.net验证日期代码

<%@ Page Language=VB Debug=true %>



Validating for a Date in the Current Year Using the CustomValidator Control





Enter a date in the current year:

    id="txtDate"
    runat=server
/>
    id="customDate"
    controltovalidate="txtDate"
    onservervalidate="Date_ServerValidation"
    display="Dynamic"
    font-name="Verdana"
    font-bold="True"
    font-size="10pt"
    runat="server">
    You must enter a date in the current year!




    id="butOK"
    text="OK"
    type="Submit"
    onclick="SubmitBtn_Click"
    runat="server"
/>


热门栏目