以编程方式获取 ASP.NET MVC 应用程序的控制器地址
假设我想从 MVC 应用程序发送一封电子邮件,其中包含返回某个项目的链接。
所以我想在我的控制器中添加一些东西,例如:
string link = "www.mysite/mycontroller/itemdetails/23";
我可以以编程方式检索它,以便它可以在我发生的任何服务器/配置上工作吗?
例如
string link = GetCurrentActionRoute() + "23";
Say I want to send an email from my MVC application containing a link back to an item.
So I want something in my controller like:
string link = "www.mysite/mycontroller/itemdetails/23";
can I retrieve this programatically so it works on whatever server/configuration i happen stick it on?
eg
string link = GetCurrentActionRoute() + "23";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我使用控制器类中的以下扩展方法来生成各种操作的链接。
示例:
方法:
I use the extension methods below from my Controller classes to generate links to various actions.
Examples:
Methods:
如果链接指向与应用程序相同的位置,您可以考虑使用 Url.Action(...) 及其重载。
例如。
如果你想获得完整的路径,你可以使用 :
,然后将 id 与它连接起来。
If the link will point to the same location as that of the application ,you may consider using the Url.Action(...) and its overloads.
Eg.
If you want to get the complete path, you can use :
and then concatenate the id with that.