コード例 #1
0
ファイル: Form_Second.cs プロジェクト: JuRogn/OA
        private void btnGetConfig_Click(object sender, EventArgs e)
        {
            HrCommonServiceClient sv = new HrCommonServiceClient();
           txtConfigResult.Text= sv.GetAppConfigByName(txtConfigSource.Text);

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

            txtResult.Text = txtResult.Text + System.Environment.NewLine + str;
        }
コード例 #3
0
ファイル: Form_Second.cs プロジェクト: jjg0519/OA
        private void btnGetConfig_Click(object sender, EventArgs e)
        {
            HrCommonServiceClient sv = new HrCommonServiceClient();

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