Validation By Function ASP.Net

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


Checking the Range of a Date through the RangeValidator Control





Enter a Date:

    id="txtDate" 
    runat=server 
/>
    id="rngDate" 
    ControlToValidate="txtDate" 
    type="Date" 
    minimumvalue="1/1/1990"
    maximumvalue="12/31/1999"
    display="Dynamic"
    runat="server">
    The Date field must be from 1/1/1990 to 12/31/1999!




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