当前位置:  开发笔记 > 后端 > 正文

从视图运行时如何修复Url(〜/ Views / Home / Index.cshtml)

如何解决《从视图运行时如何修复Url(〜/Views/Home/Index.cshtml)》经验,为你挑选了1个好方法。

我正在使用MVC 4 VS 2012 Express for Web开发网站。通常,当我直接从视图中运行时,例如Home Controller中的Index View,我在URL地址栏上获得了“ http:// localhost:62335 / ”,但是现在我获得了http:// localhost:62335 / Views / Home /Index.cshtml

我不会在RouteConfig类上更改路由,如下面的代码所示

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 }
        );
    }
}

为什么会发生这种情况以及如何解决?



1> Ash..:

尝试改为调用控制器:

http://localhost:62335/Home/

转到项目的属性,然后设置起始页属性。

转到项目的属性

转到网页标签

选择特定页面单选按钮

在“特定页面”文本框中输入所需的URL,即http:// localhost:62335 / Home /

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有