private void btnGetConfig_Click(object sender, EventArgs e) { HrCommonServiceClient sv = new HrCommonServiceClient(); txtConfigResult.Text= sv.GetAppConfigByName(txtConfigSource.Text); }
protected void btnGetConfig_Click(object sender, EventArgs e) { string str = client.GetAppConfigByName(TxtConfigName.Text); txtResult.Text = txtResult.Text + System.Environment.NewLine + str; }
private void btnGetConfig_Click(object sender, EventArgs e) { HrCommonServiceClient sv = new HrCommonServiceClient(); txtConfigResult.Text = sv.GetAppConfigByName(txtConfigSource.Text); }