Skip to content

Instantly share code, notes, and snippets.

@victorighalo
Last active June 14, 2018 23:05
Show Gist options
  • Save victorighalo/9591317aa336ab9e4b7cf47483aee8bb to your computer and use it in GitHub Desktop.
Save victorighalo/9591317aa336ab9e4b7cf47483aee8bb to your computer and use it in GitHub Desktop.
using System.Web.Mvc;
namespace WyzWeb.Public.App_Code.WyzWebControllers
{
public class BaseController : Controller
{
public ActionResult Name()
{
return Content("Victor - Misterwyz");
}
[Route("Profile")]
public new ActionResult Profile()
{
return Content("I Love Software Development and Umbraco");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment