I:ASP.NET MVC3在Visual Studio 2010中的变化

在VS2010中新建一个MVC3项目可以看出与以往的MVC2发生了很明显的变化。

ASP.NET MVC3 Razor视图引擎-基础语法

1.ASP.NET MVC3必要的运行环境为.NET 4.0 (想在3.5用MVC3,没门!)。

2.默认MVC3模板项目已集成

ASP.NET MVC3 Razor视图引擎-基础语法

3.全新的Razor视图引擎

@{
ViewBag.Title = "Home Page";
}

<h2>@ViewBag.Message</h2>
<p>
To learn more about ASP.NET MVC visit
<a href="http://asp.net/mvc" title="ASP.NET MVC Website">
http://asp.net/mvc
</a>.
@ServerInfo.GetHtml()
</p>
4. 关于所有带"_"开头的文档

相关文章:

  • 2022-12-23
  • 2022-01-23
  • 2021-06-26
  • 2021-08-21
  • 2022-03-02
猜你喜欢
  • 2021-05-19
  • 2021-09-02
  • 2021-06-24
  • 2021-09-07
  • 2021-08-01
相关资源
相似解决方案