Skip to content

Instantly share code, notes, and snippets.

@sandrinodimattia
Created October 28, 2012 09:47
Show Gist options
  • Save sandrinodimattia/3968194 to your computer and use it in GitHub Desktop.
Save sandrinodimattia/3968194 to your computer and use it in GitHub Desktop.
HomeController
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