html.actionlink?查看用户列表
<%: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您将链接文本传递给
ActionLink
时,请确保链接文本是字符串。也许这是一个拼写错误,但Actionlink
(小写 L)不是HtmlHelper
上的扩展方法。LinkExtensions.ActionLink 方法(HtmlHelper、字符串、字符串)
Make sure the text of the link is a string when you pass it into
ActionLink
. Maybe it was a typo butActionlink
(lowercase L) is not an extension method onHtmlHelper
.LinkExtensions.ActionLink Method (HtmlHelper, String, String)
选择以下任一方法:
1- 在 count() 方法之后使用
ToString()
方法2- 获取变量的计数:
然后在目标区域中,使用如下代码:
select any of the following ways:
1- Use the
ToString()
method after the count() method2- Get the count on a variable:
then in the destination area, use the code as follow: