搭建Asp.Net MVC4

启动vs2012,开始创建一个新的web应用程序。使用菜单:“文件”>“新建项目”

 请在左侧选择 Visual C#,然后选择ASP.NET MVC 4 Web 应用程序。命名您的工程为"MvcMovie",然后单击确定.

新的 ASP.NET MVC 4 项目对话框中,选择互联网应用程序。使用Razor作为默认视图引擎。

单击确定。Visual Studio 刚刚创建的 ASP.NET MVC 项目使用了默认的模板,所以在当前的工程中您不需要做任何事情!这是一个简单的"Hello World !"工程,并且这也是您开始“MvcMovie”工程的好地方。

调试菜单中,选择启动调试.(您也可以使用键盘的快捷键F5来启动调试。)

Visual Studio会启动浏览器并打开应用程序的主页面。

issue 1:

Install-Package Microsoft.AspNet.WebApi

 

issue 2:

Install-Package Microsoft.AspNet.WebApi.Tracing -Version 5.0.0

http://stackoverflow.com/questions/20071073/how-to-obtain-system-web-http-tracing-dll

 

issue 3:

{"Message":"An error has occurred.","ExceptionMessage":"The object has not yet b
een initialized. Ensure that HttpConfiguration.EnsureInitialized() is called in
the application‘s startup code after all other initialization code.","ExceptionT
ype":"System.InvalidOperationException","StackTrace":" at System.Web.Http.Rout
ing.RouteCollectionRoute.GetRouteData(String virtualPathRoot, HttpRequestMessage
request)\r\n at System.Web.Http.WebHost.Routing.HttpWebRoute.GetRouteData(Htt
pContextBase httpContext)"}
Press any key to continue . . .

http://stackoverflow.com/questions/19969228/ensure-that-httpconfiguration-ensureinitialized

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。