在ASP.NET MVC中构建视图主要包括以下几个步骤:
System.Web.Mvc.WebViewPage<TModel>
,其中TModel
是你的数据模型类。public class MyViewModel
{
public string Title { get; set; }
public string Description { get; set; }
}
System.Web.Mvc.Controller
。public class MyController : Controller
{
public ActionResult Index()
{
MyViewModel viewModel = new MyViewModel
{
Title = "Hello, ASP.NET MVC!",
Description = "This is a sample view."
};
return View(viewModel);
}
}
Views
文件夹中。要为你的控制器创建视图,请在Views
文件夹中创建一个与控制器同名的子文件夹,然后在子文件夹中创建一个与控制器方法同名的视图文件。例如,如果你的控制器名为MyController
,并且你有一个名为Index
的方法,那么你应该在Views/MyController
文件夹中创建一个名为Index.cshtml
的视图文件。在Index.cshtml
文件中,你可以使用Razor语法编写HTML代码,并使用强类型视图模型来访问数据。例如:
<!DOCTYPE html>
<html>
<head>
<title>@Model.Title</title>
</head>
<body>
<h1>@Model.Title</h1>
<p>@Model.Description</p>
</body>
</html>
Global.asax.cs
文件中,你可以定义路由规则。例如:public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
AreaRegistration.RegisterAllAreas();
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
}
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
现在,当用户访问你的应用程序时,ASP.NET MVC将使用MyController
控制器中的Index
方法处理请求,并将结果渲染到Views/MyController/Index.cshtml
视图中。