Html, , , .
Actionlinks, Html.ActionLinkSecured
Namespace System.Web.Mvc.Html
{
public static class HtmlHelperExtensions
{
public static string ActionLinkSecured(this HtmlHelper htmlHelper, string linkText, string action, string controller, object routeValues, bool showDisabled)
{
return htmlHelper.ActionLink(...);
return linkText
}
}
You can have whatever you want ... text, text field, disabled text field ... :)
source
share