我不确定我做了什么,这发生在今天。
我无法浏览我以前能够执行的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
启动方法中设置了一个断点,它甚至没有到达那里。
我还需要检查什么?
请帮忙
答案 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。