新的DXWebApplication项目。资源无法找到

时间:2015-07-13 01:53:09

标签: asp.net-mvc devexpress

我使用Dev Express的空Web应用程序模板创建了一个C#Web应用程序项目。当我运行项目时,我收到一个错误,指示无法找到资源。

重现的步骤

在VS2013中 文件 - >新建 - >项目 来自模板 - > VisualC# - > Web-> DevExpress v15.1 TemplateGallery

命名DXWebApplication1 使用位置C:\ Users \ kirsten \ Documents \

ASP.Net ASP.Net MVC Visual C# 空Web应用程序

创建项目

构建并运行

错误消息是

Server Error in '/' Application.

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. 

Requested URL: /

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34249

我能够成功使用visual studio模板创建一个普通的MVC应用程序。我正在运行Windows 7

1 个答案:

答案 0 :(得分:1)

使用DevExpress模板库创建空MVC项目时,不会创建任何控制器和视图。所以,没有什么可以回报的。创建MVC项目后,添加具有HomeController名称和Index操作的新控制器,然后在Views / Home文件夹中创建Index.cshtml视图。您还可以在RouteConfig.cs文件中自定义默认路由。

enter image description here