Exemplo n.º 1
0
        // GET: Admin/SanPham/Edit/5
        public ActionResult Edit(int id)
        {
            var rs = SanPhamBus.ChiTiet(id);
            List <CustomDropDownList> BiXoa = new List <CustomDropDownList>()
            {
                new CustomDropDownList {
                    Text = "Không Xóa", Value = 0
                },
                new CustomDropDownList {
                    Text = "Xóa", Value = 1
                }
            };
            List <CustomDropDownList> TinhTrang = new List <CustomDropDownList>()
            {
                new CustomDropDownList {
                    Text = "Còn Hàng", Value = 1
                },
                new CustomDropDownList {
                    Text = "Hết Hàng", Value = 0
                }
            };

            ViewBag.TinhTrang = new SelectList(TinhTrang, "Value", "Text");
            ViewBag.BiXoa     = new SelectList(BiXoa, "Value", "Text");
            ViewBag.MaHang    = new SelectList(HangBus.DanhSach(), "MaHang", "TenHang", rs.MaHang);
            ViewBag.MaLoai    = new SelectList(LoaiBus.DanhSach(), "MaLoai", "TenLoai", rs.MaLoai);
            return(View(rs));
        }
Exemplo n.º 2
0
        // GET: Admin/SanPham/Create
        public ActionResult Create()
        {
            List <CustomDropDownList> BiXoa = new List <CustomDropDownList>()
            {
                new CustomDropDownList {
                    Text = "Không Xóa", Value = 0
                },
                new CustomDropDownList {
                    Text = "Xóa", Value = 1
                }
            };
            List <CustomDropDownList> TinhTrang = new List <CustomDropDownList>()
            {
                new CustomDropDownList {
                    Text = "Còn Hàng", Value = 1
                },
                new CustomDropDownList {
                    Text = "Hết Hàng", Value = 0
                }
            };

            ViewBag.TinhTrang = new SelectList(TinhTrang, "Value", "Text");
            ViewBag.BiXoa     = new SelectList(BiXoa, "Value", "Text");
            ViewBag.MaHang    = new SelectList(HangBus.DanhSach(), "MaHang", "TenHang");
            ViewBag.MaLoai    = new SelectList(LoaiBus.DanhSach(), "MaLoai", "TenLoai");
            return(View());
        }