コード例 #1
0
 public ActionResult Contact()
 {
     post = postCollection[1];  // 0
     ViewBag.bodyTitle = post.title;
     ViewBag.bodyContents = post.body;
     return View();
 }
コード例 #2
0
 public ActionResult MomsArise()
 {
     post = postCollection[0];
     ViewBag.bodyTitle = post.title;
     ViewBag.bodyContents = post.body;
     return View();
 }
コード例 #3
0
 public ActionResult About()
 {
     post = postCollection[4];  // 3
     ViewBag.bodyTitle = post.title;
     ViewBag.bodyContents = post.body;
     return View();
 }
コード例 #4
0
 public ActionResult Partners()
 {
     post = postCollection[2]; // 1
     ViewBag.bodyTitle = post.title;
     ViewBag.bodyContents = post.body;
     return View();
 }
コード例 #5
0
 public ActionResult New()
 {
     post = postCollection[5];  // 4
     ViewBag.bodyTitle = post.title;
     ViewBag.bodyContents = post.body;
     return View();
 }