Beispiel #1
0
        //TRYIT FOR ELECTIVE SERVICE #1
        protected void SortTop10LowHighBtn_Click(object sender, EventArgs e)
        {
            //open the proxy
            StockRelatedWebServices.Service1Client proxy = new StockRelatedWebServices.Service1Client();
            SortedIndicesTextBox.Text = proxy.SortIndicesLowHigh();

            //close the client
            proxy.Close();
        }