Skip to content

Instantly share code, notes, and snippets.

@nbxx
Created September 21, 2016 16:28
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 nbxx/5af14ce0a240b063858ca1c83f41211c to your computer and use it in GitHub Desktop.
Save nbxx/5af14ce0a240b063858ca1c83f41211c to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.Mvc;
namespace ConsoleApplication
{
public class HomeController : Controller
{
[HttpGet("/{name}")]
public IActionResult Index(string name)
{
ViewBag.Name = name;
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment