示例#1
0
        protected void Top10Submit_Click(object sender, EventArgs e)
        {
            Top10ListBox.Items.Clear();
            AllServices.Service1Client words = new AllServices.Service1Client();
            string input = Top10URL.Text;

            //Call the service and store the result
            string[] results = words.Top10Words(input);
            foreach (string word in results)
            {
                //Add the result to the listbox
                Top10ListBox.Items.Add(word);
            }
        }
示例#2
0
        protected void WeatherSubmit_Click(object sender, EventArgs e)
        {
            //create instance of the service
            WeatherListBox.Items.Clear();
            AllServices.Service1Client weather = new AllServices.Service1Client();
            string input = WeatherZipcode.Text;

            //Call the service and store the result
            string[] results = weather.WeatherService(input);

            foreach (string temperature in results)
            {
                //Add result to the list box
                WeatherListBox.Items.Add(temperature);
            }
        }
示例#3
0
        protected void AppointmentButtonSubmit_Click(object sender, EventArgs e)
        {
            AppointmentLabelResult.Text = null;
            AllServices.Service1Client appt = new AllServices.Service1Client();
            try
            {
                //Get the parameters
                string date = DesiredDate.Text;
                string time = DesiredTime.Text;

                //Call the service and display the result
                AppointmentLabelResult.Text = appt.ScheduleAppointment(date, time);
            }
            catch (Exception ex)
            {
                //display any error messages
                AppointmentLabelResult.Text = ex.Message;
            }
        }
示例#4
0
 protected void OilButtonSubmit_Click(object sender, EventArgs e)
 {
     OilLabelResult.Text = null;
     AllServices.Service1Client oil = new AllServices.Service1Client();
     try
     {
         //Get the parameters
         int    currentMileage = Convert.ToInt32(OilCurrentMileage.Text);
         int    lastMileage    = Convert.ToInt32(OilLastMileage.Text);
         string oilType        = OilType.Text;
         //Call the service and set the text equal to the output label
         OilLabelResult.Text = oil.OilServiceRecommendation(oilType, currentMileage, lastMileage);
     }
     catch (Exception ex)
     {
         //display any error messages
         OilLabelResult.Text = ex.Message;
     }
 }
示例#5
0
        protected void GetCarButtonSubmit_Click(object sender, EventArgs e)
        {
            GetCarResult1.Text = null;
            GetCarResult2.Text = null;
            GetCarResult3.Text = null;
            AllServices.Service1Client car = new AllServices.Service1Client();
            try
            {
                //Get the parameters
                string make    = GetCarMake.Text;
                string model   = GetCarModel.Text;
                string year    = GetCarYear.Text;
                string zipcode = GetCarZipcode.Text;

                //Call the service and display the results
                string[] results = car.getCar(year, make, model, zipcode);
                GetCarResult1.Text = results[0];
                GetCarResult2.Text = results[1];
                GetCarResult3.Text = results[2];
            }catch (Exception ex)
            {
                GetCarResult1.Text = ex.Message;
            }
        }