Asp Control ASP.Net


void Page_Load()
{
  if (Page.IsPostBack) {
    switch(Destination.SelectedItem.Value) 
    {
      case "Barcelona":
        Message.Text = "You selected Spain's lively Catalan city";
        break; 
      case "Oslo":
        Message.Text = "Experience the majesty of Norway's capital city";
        break; 
      case "Lisbon": 
        Message.Text = "Portugal's famous seaport and cultural hub";
        break; 
      default:
        Message.Text = "you did not select a destination we travel to";
        break; 
    }
  }
}




  
  Select your choice of destination:
  


  
    Barcelona
    Oslo
    Lisbon