コード例 #1
0
ファイル: AdminController.cs プロジェクト: biletnam/Theater-7
 public ActionResult GetAuthorsByName(string name)
 {
     try
     {
         TempData["AuthorList"] = authorsDb.GetAuthorsByName(name);
         pageSize = pageSizeForFilter;
         return(RedirectToAction("AuthorsTable", "Admin"));
     }
     catch
     {
         return(RedirectToAction("AuthorsTable", "Admin"));
     }
 }