Created
October 28, 2012 09:47
-
-
Save sandrinodimattia/3968194 to your computer and use it in GitHub Desktop.
HomeController
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HomeController : Controller | |
{ | |
public ActionResult Index() | |
{ | |
ViewBag.Message = "I'm going to commit this to my BitBucket repo."; | |
return View(); | |
} | |
public ActionResult About() | |
{ | |
ViewBag.Message = "Your app description page."; | |
return View(); | |
} | |
public ActionResult Contact() | |
{ | |
ViewBag.Message = "Your contact page."; | |
return View(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment