问题描述
publicstaticvoidRegisterRoutes(RouteCollectionroutes){routes.IgnoreRoute("{resource}.axd/{*pathInfo}");routes.MapRoute(name:"Default",//Routenameurl:"{controller}/{action}/{id}",//URLwithparametersdefaults:new{controller="Home",action="Index",id=UrlParameter.Optional},//Parameterdefaultsnamespaces:newstring[]{"HRMS.Colltrollers"});}
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Web.Mvc;usingSystem.Web;usingSystem.Configuration;namespaceHRMS.Controllers{publicclassHomeControllers:Controller{publicActionResultIndex(){returnView();}}}
就配置了Global.asax
解决方案
解决方案二:
求大神指导,就是想不明白为什么配置文件按网上说的改好了,但是调试一直报404错误,Controllers的类库要用的引用都有
解决方案三:
Web项目添加Controller项目的引用了吗?
解决方案四:
是不是web项目忘了引用HRMS.Controllers.
解决方案五:
web项目引用了控制器生成的dll