带破折号的 MVC2 URL

发布于 2024-10-18 20:28:42 字数 218 浏览 1 评论 0原文

我有一个名为 DataGrowth.aspx 的视图(页面),如何在浏览器中显示它,如下所示:

http:// /localhost/Solutions/Data-Growth/

尝试使用 ASP.Net MVC2 执行此操作,

谢谢

I have a view (page) called DataGrowth.aspx, how can I display it in the browser like so:

http://localhost/Solutions/Data-Growth/

Trying to do this with ASP.Net MVC2

Thanks

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

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

发布评论

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

评论(1

旧街凉风 2024-10-25 20:28:42

添加一个

[ActionName("Data-Growth")]

您向控制器操作 属性。
然后,您可以选择将视图重命名为 Data-Growth.aspx 或简单地将返回语句修改为

return View("DataGrowth");

You add an

[ActionName("Data-Growth")]

attribute to the Controller Action.
You can then choose to rename your View to Data-Growth.aspx or simply modify your return statement to

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