Quick aide-mémoire, returning programmatic html in MVC

public ActionResult SayHello()
{
    return new ContentResult() { Content = "hello" };
}

Leave a comment