예제 #1
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            RequestGetCompensation request = new RequestGetCompensation();

            request.UserID = int.Parse(txtUserID.Text);
            DataTable dt = DAT.GetCompensation(request);

            txtBasicPay.Text           = dt.Rows[0]["CBasicPay"].ToString();
            txtTransportAllowance.Text = dt.Rows[0]["CTransport"].ToString();
            txtMealAllowance.Text      = dt.Rows[0]["CMeal"].ToString();
            txtRiceSubsidy.Text        = dt.Rows[0]["CRiceSubsidy"].ToString();
            txtLaundry.Text            = dt.Rows[0]["CLaundry"].ToString();
        }