gpt4 book ai didi

asp.net - 如何从 Controller 设置@Html.ActionLink 的动态标题?

转载 作者:行者123 更新时间:2023-12-04 00:01:11 26 4
gpt4 key购买 nike

我有

@Html.ActionLink("Remove 1034, 1035, 1036", "RemoveSelected")

现在我想从 Controller 设置每个 id

例如:
@Html.ActionLink(ViewBag.RemoveSelectedTitle, "RemoveSelected") //this is not work

// GET: /TabMaster/
public ActionResult Index()
{
ViewBag.RemoveSelectedTitle = "100,101,102";
return View(_tabmasterService.GetTabMasterList(10, 1));
}

最佳答案

您需要将 RemoveSelectedTitle 转换为字符串。当您使用 Viewbag 时,这是一个动态对象,并且不知道 RemoveSelectedTitle 是一个字符串。你的 ActionLink 应该是这样的:

@Html.ActionLink((string)ViewBag.RemoveSelectedTitle, "RemoveSelected")

关于asp.net - 如何从 Controller 设置@Html.ActionLink 的动态标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6292813/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com