html.actionlink?查看用户列表

发布于 2024-11-02 20:56:03 字数 190 浏览 6 评论 0原文

<%:Html.Actionlink(Model.User.Count().ToString, " " )

该代码在计数上设置了一个操作链接。但是当我单击计数时,它应该显示用户列表。

例如:

如果计数为 5,则

单击 5 应该显示列表中的这 5 个用户,如何设置参数?

<%:Html.Actionlink(Model.User.Count().ToString, " " )

The code sets a actionlink on count. But when i click on the count it should show the list of users.

for ex:

if the count is 5

a click on 5 should dsiplay those 5 users on the list how set up the argument?

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

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

发布评论

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

评论(2

与酒说心事 2024-11-09 20:56:03

当您将链接文本传递给 ActionLink 时,请确保链接文本是字符串。也许这是一个拼写错误,但 Actionlink(小写 L)不是 HtmlHelper 上的扩展方法。

<%:Html.ActionLink(Model.User.Count().ToString(), "Details") %>

LinkExtensions.ActionLink 方法(HtmlHelper、字符串、字符串)

public static MvcHtmlString ActionLink(
    this HtmlHelper htmlHelper,
    string linkText,
    string actionName
)

Make sure the text of the link is a string when you pass it into ActionLink. Maybe it was a typo but Actionlink (lowercase L) is not an extension method on HtmlHelper.

<%:Html.ActionLink(Model.User.Count().ToString(), "Details") %>

LinkExtensions.ActionLink Method (HtmlHelper, String, String)

public static MvcHtmlString ActionLink(
    this HtmlHelper htmlHelper,
    string linkText,
    string actionName
)
太阳公公是暖光 2024-11-09 20:56:03

选择以下任一方法:

1- 在 count() 方法之后使用 ToString() 方法

2- 获取变量的计数:

<%: var count = Model.User.Count().ToString() %>

然后在目标区域中,使用如下代码:

<%:Html.Actionlink(count, "Details" )%>

select any of the following ways:

1- Use the ToString() method after the count() method

2- Get the count on a variable:

<%: var count = Model.User.Count().ToString() %>

then in the destination area, use the code as follow:

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