返回檢視頁面
此 ActionResult 返回 Razor 檢視頁面。在標準路由模板下,將在 http:// localhost / about / me 訪問此 ActionResult 方法
我們將在你的網站~/Views/About/Me.cshtml 中自動檢視該檢視
public class AboutController : Controller
{
    public ActionResult Me()
    {
        return View();
    }
}