Sure:
public ActionResult Index()
{
return Content("No view involved here", "text/plain");
}
или
public ActionResult Index()
{
return File("test.pdf", "application/pdf");
}
или
public ActionResult Index()
{
return Json(new { foo = "bar" });
}
Во всех этих примерах отсутствует представление. Контроллер действует как обработчик HTTP.