在 mvc 2.0 中生成 URL(不带锚标记)
我需要生成一个基于控制器和操作但没有锚标记的链接,即只需生成类似这样的内容
i need to generate a link based on a controller and action but with no anchor tags, ie just generate something like this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Url.Action 而不是 Html.ActionLink
示例
将为您提供“myfavorite/website”部分,如果需要,您可以在其前面添加主机名。
You can use Url.Action rather than Html.ActionLink
Example
Will give you the 'myfavorite/website' part, which you can prepend with your hostname if required.
简单地说,您可以编写自己的帮助器:
Html.Action(string action, string controller)
并通过 String.Format() 自定义结果 URL
Simply, you can write your own helper:
Html.Action(string action, string controller)
and customize result URL via String.Format()