示例#1
0
        public ActionResult SearchPhone(FormCollection col)
        {
            string         phoneName  = col["txtSearch"];
            string         brandID    = col["txtBrandID"];
            string         categoryID = col["txtCategoryID"];
            List <Product> model      = dao.GetAllPhones_Search(phoneName, brandID, categoryID);

            return(View("LoadList", model));
        }