- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我不得不将我的 ASP.Net 4.5.2 应用程序降级到 ASP.Net 4.0。当然这会带来问题,比如未安装的引用正确的。我已经解决了其中的一些问题,但我无法理解错误:
CS106 'RouteCollection' does not contain a definition for 'MapMvcAttributeRoutes' and no extension method 'MapMvcAttributeRoutes' accepting a first argument of type 'RouteCollection' could be found
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapMvcAttributeRoutes();
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "device", action = "view", id = UrlParameter.Optional });
}
}
有人知道我在这里要做什么吗?
额外信息
我使用的命名空间:
Visual Studio 社区 2015
最佳答案
唯一支持属性路由(为 MapMvcAttributeRoutes
扩展方法提供支持)的 MVC 版本是 MVC 5。
然而,MVC 5 only supports .NET framework 4.5 及更高。
所以,您有 2 个选择:
Being that Microsoft officially no longer supports any version of .NET Framework lower than 4.5.2 (except for 3.5, but that would mean downgrading to MVC 2 for support), I would highly recommend you consider the first option seriously.
关于c# - RouteCollection”不包含“MapMvcAttributeRoutes”的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37991768/
路由配置: public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) {
你能说出 RouteCollection 和 Route Table 的区别吗? 我尝试了很多在 Google 上进行搜索。但找不到任何引用资料。 最佳答案 RouteTable是一个存储应用程序 U
我不得不将我的 ASP.Net 4.5.2 应用程序降级到 ASP.Net 4.0。当然这会带来问题,比如未安装的引用正确的。我已经解决了其中的一些问题,但我无法理解错误: CS106 'RouteC
RouteCollection.Ignore(url, constraints)和RouteCollection.IgnoreRoute(url, constraints)有什么区别? 背景 新的MV
我随处看到的 MVC 风格路由的示例是这样的: void Application_Start(object sender, EventArgs e) { RegisterRoutes(Rout
我正在 VS 2008(带有 SP1)中开发一个网站(Web 表单,而不是 MVC)。我正在尝试合并 ASP.NET 路由。我正在按照 MSDN 教程进行操作。 http://msdn.microso
我一直在开发一个纯 MVC CMS 的乐趣,并且遇到了一个令人讨厌的 ASP.NET 路由错误/功能。 我的 CMS 中的每个动态 托管页面都与从数据库中提取的特定路由相关联。这些在应用程序启动时加载
Laravel:当有人访问后路由而不提供后路由参数时,如何防止 RouteCollection.php 中的 MethodNotAllowedHttpException? 当我定义一个 post 路由
我正在使用 Sonata Admin Bundle,但在使用该功能时遇到了一些问题: function configureRoutes(RouteCollection $collection){ }
welcome {{
路由文件 Route::get('/home', 'HomeController@index')->name('home'); Route::get('/' , ['as' => '/', 'uses
我在 iis7 上运行的 asp.net mvc 代码中随机出现两个异常: Exception type: InvalidOperationException Exception message: C
当我存储帖子时出现此错误 MethodNotAllowedHttpException in RouteCollection.php line 219: 什么会导致这个问题?? 路由.php: Rout
我这里有这些路由声明 //Skill Route::get('skill','SkillController@index'); Route::get('skill/create','SkillCont
我收到此错误: Sorry, the page you are looking for could not be found. 1/1 NotFoundHttpException in RouteCo
routes.php Route::get('/',array('uses'=>'student@index')); Route::get('/view',array('uses'=>'student
这是我的global.asax(注册路由) routes.MapRoute("NewDatabase", "Server/{serverId}/Instances/{in
我目前正在开发一个论坛系统 (laravel 5.3),我收到一个错误,可能是因为我的路由设置有问题。 name('index'); Auth::routes(); Route::get('/
我正在开发 Laravel 5 应用程序,我有这条路线 Route::get('/go','UrlController@index'); 在这个 UrlController.php 中,我有这个索引方
我遵循 SignalR wiki 页面中的示例,这是我的 Global.asax : void Application_Start(object sender, EventArgs e
我是一名优秀的程序员,十分优秀!