-
Notifications
You must be signed in to change notification settings - Fork 22
ASP .NET Model
曾璐 edited this page Dec 23, 2016
·
2 revisions
Model是全局变量,一个页面一个
@ModelWebApplication1.Models.Movie;
@{
ViewBag.Title = "ModelTest";
}
<h2>ModelTest</h2>
<label>@Model.ID</label>
<label>@Model.Name</label>
<label>@Model.Director</label>public ActionResult ModelTest()
{
Movie movie=newMovie();
movie.Director = "haha";
movie.ID = "1";
movie.Name = "山有虎2333";
return View(movie); //这样塞进去
}