ASP.NET MVC Routing doesn't affect the changes -


i'm using asp.net mvc3 , wanna define custom route, test route in other project , works in main project doesn't! made question before here interesting comment of defined route , still works before! (my project doesn't routing !) possible mvc render page in case ??? have done this

 protected void application_start()         {             arearegistration.registerallareas();            //  registerglobalfilters(globalfilters.filters);           //    registerroutes(routetable.routes);              // initializer             database.setinitializer(new initializer());               //ninject             controllerbuilder.current.setcontrollerfactory(new ninjectdependencyresolver());         }  

notice line of code comment !

   //    registerroutes(routetable.routes);  

i think has override mvc routing change in routing doesn't affect in project ,what problem ??


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -