Skip to content

Instantly share code, notes, and snippets.

@IEvangelist
Created January 12, 2016 19:21
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 IEvangelist/7512b9203cdd74f716f5 to your computer and use it in GitHub Desktop.
Save IEvangelist/7512b9203cdd74f716f5 to your computer and use it in GitHub Desktop.
using Microsoft.AspNet.Mvc;
namespace WebApplication1.Controllers
{
public class PartialController : Controller
{
public IActionResult Message() => PartialView();
public IActionResult Numbers() => PartialView();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment