无法浏览asp.net mvc 4页面

时间:2013-05-21 10:10:46

标签: asp.net asp.net-mvc visual-studio

我不确定我做了什么,这发生在今天。

我无法浏览我以前能够执行的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's启动方法中设置了一个断点,它甚至没有到达那里。

我还需要检查什么?

请帮忙

2 个答案:

答案 0 :(得分: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}
        );
    }

答案 1 :(得分:1)

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