Skip to content

Instantly share code, notes, and snippets.

@agileguy
Created April 22, 2012 17:22
Show Gist options
  • Select an option

  • Save agileguy/2465457 to your computer and use it in GitHub Desktop.

Select an option

Save agileguy/2465457 to your computer and use it in GitHub Desktop.
Controller
using System.Web.Mvc;
namespace website.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment