Exemplo n.º 1
0
        public ActionResult PageNavList()
        {
            IndexCommonDataBLL bll = new IndexCommonDataBLL();
            DataTable          dt  = bll.GetPageNavlist();

            return(PartialView("_PageNavPartial", dt));
        }
Exemplo n.º 2
0
        public ActionResult PageBannerList()
        {
            IndexCommonDataBLL bll = new IndexCommonDataBLL();
            DataTable          dt  = bll.Getbannerlist();

            return(PartialView("_BannerPartial", dt));
        }
Exemplo n.º 3
0
        public ActionResult BigCategoryList()
        {
            MenuCategoriesPModel model = new MenuCategoriesPModel();
            IndexCommonDataBLL   bll   = new IndexCommonDataBLL();
            DataSet ds = bll.GetFatherMenus();

            model.bigcategory   = ds.Tables[0];
            model.subcategory   = ds.Tables[1];
            model.brandtable    = ds.Tables[2];
            model.categorytable = ds.Tables[3];
            return(PartialView("_MenuPartial", model));
        }