// GET: Search
 public ActionResult Index(string q)
 {
     ViewBag.name = q;
     return(View(pageRepository.SearchPage(q)));
 }