コード例 #1
0
ファイル: Default.aspx.cs プロジェクト: Montagu-Evans/WCF
        protected void btn_search_Click(object sender, EventArgs e)
        {
            DeathOfJanuaryServiceReference.DeathOfJanuaryServiceSoapClient client = new DeathOfJanuaryServiceSoapClient();

            var death = client.DeathOfJanuary(txtBoxOfDeath.Text);
            if (death != string.Empty)
            {
                lbl_result.Text = death;
            }
            else
            {
                lbl_result.Text = "Woops, try another number";
            }
        }
コード例 #2
0
ファイル: Default.aspx.cs プロジェクト: Montagu-Evans/WCF
        protected void btn_search_Click(object sender, EventArgs e)
        {
            DeathOfJanuaryServiceReference.DeathOfJanuaryServiceSoapClient client = new DeathOfJanuaryServiceSoapClient();

            var death = client.DeathOfJanuary(txtBoxOfDeath.Text);

            if (death != string.Empty)
            {
                lbl_result.Text = death;
            }
            else
            {
                lbl_result.Text = "Woops, try another number";
            }
        }