你好,我在MVC C#是新的,而且有一些問題簡單的傳球數據,查看在c#
我控制器這樣
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
return View();
}
}
我想通過一些varible如家目前的觀點,如何做到這一點,以及如何展示這一點? LIK @what
這是在第一個ASP.NET MVC教程中提到的,我建議你仔細看看它們。你[開始使用ViewBag](http://www.asp.net/mvc/tutorials/mvc-5/introduction/adding-a-view),然後你去[添加模型](http:// www .asp.net/mvc/tutorials/mvc-5/introduction/examining-the-edit-methods-and-edit-view)將值從控制器傳遞到視圖。 – CodeCaster
可能重複[ViewBag,ViewData和TempData](http://stackoverflow.com/questions/7993263/viewbag-viewdata-and-tempdata) – CodeCaster