コード例 #1
0
        protected void btnXuatThongTin_Click(object sender, EventArgs e)
        {
            // Nhận giá trị nhập
            string   maso       = txtMaso.Text;
            string   hoten      = txtHoTen.Text;
            DateTime ngaysinh   = DateTime.Parse(txtNgaySinh.Text);
            DateTime ngayvaolam = DateTime.Parse(txtNgayVaoLam.Text);
            double   hsl        = double.Parse(txtHeSoLuong.Text);
            Phai     gioitinh   = chkGioiTinh.Checked ? Phai.Nam : Phai.Nữ;
            int      songayvang = int.Parse(txtSoNgayVang.Text);

            // Cách 1: Bình thường
            //NhanVien nv = new NhanVien();
            if (rdbNVSX.Checked)
            {
                NhanViensx nv = new NhanViensx(maso, hoten, ngaysinh, ngayvaolam, gioitinh, songayvang, int.Parse(txtSoSanPham.Text));
                lblThongTin.Text = nv.XuatThongTin();
            }
            else if (rdbNVVP.Checked)
            {
                NhanVienvp nv = new NhanVienvp(maso, hoten, ngaysinh, ngayvaolam, hsl, gioitinh, songayvang);
                lblThongTin.Text = nv.XuatThongTin();
            }

            // Cách 2: Ứng dụng LateBinding

            // Chuyển sang View2
            MultiView1.ActiveViewIndex = 1;
            // lblThongTin.Text = string.Format(nv.XuatThongTin("<br/>").ToString());
        }
コード例 #2
0
        protected void btnXuatThongTin_Click(object sender, EventArgs e)
        {
            // Nhận giá trị nhập
            string   maso       = txtMaso.Text;
            string   hoten      = txtHoTen.Text;
            DateTime ngaysinh   = DateTime.Parse(txtNgaySinh.Text);
            DateTime ngayvaolam = DateTime.Parse(txtNgayVaoLam.Text);
            Phai     gioitinh   = chkGioiTinh.Checked ? Phai.Nam : Phai.Nữ;
            int      songayvang = int.Parse(txtSoNgayVang.Text);
            // Cách 2: Ứng dụng LateBinding
            NhanVien nv;

            if (rdbNVVP.Checked)
            {
                double hsl = double.Parse(txtHeSoLuong.Text);
                nv = new NhanVienvp(maso, hoten, ngaysinh, ngayvaolam, gioitinh, hsl, songayvang);
            }
            else
            {
                int sosp = int.Parse(txtSoSanPham.Text);
                nv = new NhanViensx(maso, hoten, ngaysinh, ngayvaolam, gioitinh, songayvang, sosp);
            }
            string thongTinLuongNhanVien = nv.XuatThongTin();

            lblThongTin.Text = thongTinLuongNhanVien;

            // Chuyển sang View2
            MultiView1.ActiveViewIndex = 1;
        }
コード例 #3
0
        protected void btnXuatThongTin_Click(object sender, EventArgs e)
        {
            DateTime   ns  = new DateTime(1986, 1, 25);
            DateTime   nvl = DateTime.Parse("03/25/2018");
            NhanVienvp nv1 = new NhanVienvp("VP01", "Tran van B", ns, nvl, 2, Phai.Nam, 5);

            lblThongBao.Text = nv1.XuatThongTin();
            txtThongTin.Text = nv1.XuatThongTin("\r\n");//Ký hiệu Xuống dòng của Textbox
        }
コード例 #4
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            DateTime ns  = new DateTime(1986, 1, 25);
            DateTime nvl = DateTime.Parse("1/15/2015");

            NhanVienvp nv1 = new NhanVienvp("K01", "NVA", ns, nvl, Phai.Nam, 1.5, 5);

            labelThongTin.Text = nv1.XuatThongTin();

            textBoxThongTin.Text = nv1.XuatThongTin("\r\n");
        }