logo
  • 教程列表
  • SO官方文檔
  • ActionResult
    • 返回一個檔案
    • ViewResult
    • 行動方法
    • 返回檢視頁面
    • PartialViewResult
    • 對映操作 - 方法引數
    • 返回一個 Json
    • RedirectResult
    • 在另一個 ActionResult 中呼叫 ActionResult
    • RedirectToRouteResult
    • ContentResult 型別
    • JsonResult
  1. StackOverflow 文件
  2. asp.net-mvc 教程
  3. ActionResult
  4. 返回檢視頁面

返回檢視頁面

Created: November-22, 2018

此 ActionResult 返回 Razor 檢視頁面。在標準路由模板下,將在 http:// localhost / about / me 訪問此 ActionResult 方法

我們將在你的網站~/Views/About/Me.cshtml 中自動檢視該檢視

public class AboutController : Controller
{
    public ActionResult Me()
    {
        return View();
    }
}
  • PartialViewResult
  • 行動方法

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明