I create an area using ASP.NET MVC 3 by right-clicking on a project to add an area called MyArea.

Visual Studio 2010 automatically created AreaRegistration and adds RegisterAllAreas () to Application_Start () in Global.asax
But this url is not working: http: // localhost: 1733 / MyArea / AreaHome / Index

Even if the route seems to be registered.

Can anyone see what I'm doing wrong?
Thanks in advance.
source
share