Beispiel #1
0
        private void btnGetConfig_Click(object sender, EventArgs e)
        {
            HrCommonServiceClient sv = new HrCommonServiceClient();
           txtConfigResult.Text= sv.GetAppConfigByName(txtConfigSource.Text);

        }
Beispiel #2
0
        protected void btnGetConfig_Click(object sender, EventArgs e)
        {
            string str = client.GetAppConfigByName(TxtConfigName.Text);

            txtResult.Text = txtResult.Text + System.Environment.NewLine + str;
        }
Beispiel #3
0
        private void btnGetConfig_Click(object sender, EventArgs e)
        {
            HrCommonServiceClient sv = new HrCommonServiceClient();

            txtConfigResult.Text = sv.GetAppConfigByName(txtConfigSource.Text);
        }