Asp Control ASP.Net

<%@ Page Language="C#" %>

  
    
    void Page_Load(object sender, EventArgs e)
    {
      if(!IsPostBack)
        DepartureDate.SelectedDate = System.DateTime.Today;
    }
    void SearchButton_Click(object Sender, EventArgs e)
    {
      if(DepartureDate.SelectedDate <= System.DateTime.Today)
        ResultLabel.Text = "You must selected a Departure Date in the future.";
      else if(ReturnDate.SelectedDate < DepartureDate.SelectedDate)
        ResultLabel.Text = "Return Date must follow the Departure Date.";
      else   
        ResultLabel.Text = "Departing on " + DepartureDate.SelectedDate.ToShortDateString() +
          " and returning on " + ReturnDate.SelectedDate.ToShortDateString();
    }
    
    
      

Find a Flight


      
        
          
          
        
        
          
          
        
      
Departure Date
              
              
            
Return Date