如何更改项目的起始页?
我创建一个新项目并启动它。事实证明,控制器 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开文件 Global.asax.cs 并查找行
There,将 Home 和 Index 更改为您选择的值。
希望有帮助!
Open the file Global.asax.cs and look for the line
There, change Home and Index to the your choice's values.
Hope that helps!