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

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

    }

}

我不知道为什么它http://localhost:00000/Views/Dashboard/Index.cshtml在这个位置打开

有什么可以做到的?

4

2 回答 2

3

尝试这个

1)右键单击您的项目解决方案

2) 选择属性

3) 选择 Web 选项,然后选择当前页面

于 2016-08-02T06:45:43.993 回答
0

您好使用此代码。

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

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
                namespaces: new[] { "YourProjectDLLName.Controllers" }
            );
        }

确保不要忘记添加项目 DLL 的命名空间。完成此操作后,构建您的项目并进行调试。

于 2016-08-10T13:52:14.143 回答