Skip to content

Instantly share code, notes, and snippets.

@Maarten88
Created June 13, 2013 23:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Maarten88/5778420 to your computer and use it in GitHub Desktop.
Save Maarten88/5778420 to your computer and use it in GitHub Desktop.
using Auction.Web.Utility;
using System.Web.Mvc;
namespace Auction.Web.Controllers
{
[CookieConsent]
public class HomeController : Controller
{
public ActionResult Index()
{
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