ASP.NET MVC- 視圖

  關於視圖的一些一些一些html

  1、Action指定使用視圖spa

public ActionResult Add(string txtName, string txtContent)
        {
            return View("Index");
            return View("~/Views/Default/BackDemo.cshtml")
            return View();
        }

  2、Action向View傳遞數據code

  主要有四種ViewData、ViewBag和Model和TempData,其中ViewData和ViewBag共享數據。TempData和其餘不共享htm

  3、調用另外一個視圖(RenderPartial)blog

  記錄一下,@{HTML.RenderPartial("~/View/Home/List.cshtml"); },這樣能夠直接調用另外一個頁面的HTML。string

  若是想在調用的這個頁面進行傳遞參數,能夠在父頁面,用ViewData將參數傳入,而後再調用。例如這樣io

  ViewData["Test"] = "ccx";   @{HTML.RenderPartial("~/View/Home/List.cshmtl"); }
相關文章
相關標籤/搜索