creating a action link to count number of users

link|improve this question

33% accept rate
feedback

2 Answers

up vote 0 down vote accepted

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
)
link|improve this answer
feedback

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" )%>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.