Controller
- Controller 父类:提供很多上下文相关信息及封装方法
- this.File() 返回文件
 
 返回 IActionResult
Razor 引擎
- Controller -> ViewResult -> HTML 页面
 
View 示例:
@using Tutorial.Web.Model@model IEnumerable<Student>@{Layout = null;}<!DOCTYPE html><html><head><meta name="viewport" content="width=device-width" /><title>Hello From Index.cshtml</title></head><body><h1>Students</h1><ul>@foreach (var s in Model){<li>@s.FirstName - @s.LastName</li>}</ul></body></html>

