0

我不确定我做了什么,这只是今天发生的。

我无法浏览MVC 4我以前可以浏览的应用程序之一。

没有错误信息。

当我右键单击我的项目并在浏览器中查看时,它只会显示"Connecting..." - localhost:55223,并永远保留在那里。

我尝试了以下方法:

1) Copied the proejct onto another PC and browse - works!
2) Create a new MVC application in visual studio and browse - works!

我在global.asax'sstart 方法中设置了一个断点,它甚至没有到达那里。

我还需要检查什么?

请帮忙

4

2 回答 2

1

抱歉,我无法发表评论,因为我看不到评论按钮。

看看你的 global.asax RegisterRoutes 方法好吗?例如:

public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "GridPaging",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional}
        );
    }
于 2013-05-21T11:39:30.540 回答
1

您是否尝试过右键单击任务栏中的 IIS 图标并退出它?然后再次构建项目以重新启动 IIS。

于 2013-05-21T11:42:44.580 回答