예제 #1
0
 // GET: Profile List 
 public ActionResult _ProfileListPartial(int page)
 {
     BLLProfile _profile = new BLLProfile();
     var _profileList = _profile.GetProfileList(page, 10);
     return PartialView(_profileList);
 }
예제 #2
0
 // GET: Profile
 public ActionResult Index()
 {
     BLLProfile _profile = new BLLProfile();
     var _profileList = _profile.GetProfileList(1, 10);
     return View(_profileList);
 }