给定以下字符串:
/MyController/MyAction/4
如何在另一个控制器的操作中生成链接以链接到适当的地址?
如果我执行以下操作:
@Html.ActionLink("click", Url.Action(item.Link))
// where item.Link is where /MyController/MyAction/4 is stored
我得到一个类似的链接:
www.localhost.com/CurrentController/CurrentController/MyController/MyAction/4
我不需要“CurrentController”部分(是的,其中有两个 - 我认为那是因为我正在做一个 @Html.ActionLink 和一个 Url.Action)。
我将如何获得适当的链接?