如何更改项目的起始页?

发布于 2024-09-19 03:04:31 字数 178 浏览 3 评论 0原文

我创建一个新项目并启动它。事实证明,控制器 Home 被调用,操作是默认的,即 Index - 这意味着 Controllers/HomeController.Index() 被调用。此操作显示的视图在此方法中定义 - 即 Views/Home/Index.apsx。

我想将这个启动行为更改为另一个控制器和操作。我该怎么做?

I create a new project and start it. It turns out that the controller Home is called with the action is default i.e. Index - this means Controllers/HomeController.Index() is called. The view displayed by this action is defined in this method - i.e. Views/Home/Index.apsx.

I want to change this starting behavior to be another controller and action. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情丝乱 2024-09-26 03:04:31

打开文件 Global.asax.cs 并查找行

        routes.MapRoute(
            "Default",                                              // Route name
            "{controller}/{action}/{id}",                           // URL with parameters
            new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
        );

There,将 Home 和 Index 更改为您选择的值。
希望有帮助!

Open the file Global.asax.cs and look for the line

        routes.MapRoute(
            "Default",                                              // Route name
            "{controller}/{action}/{id}",                           // URL with parameters
            new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
        );

There, change Home and Index to the your choice's values.
Hope that helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文