Blog.Controllers.PageController.Show C# (CSharp) Method

Show() public method

public Show ( string tytul ) : System.Web.Mvc.ActionResult
tytul string
return System.Web.Mvc.ActionResult
        public ActionResult Show(string tytul)
        {
            if (String.IsNullOrEmpty(tytul))
                return RedirectToAction("Index", "Home");
            return View();
        }
PageController