If you want to use HtmlHelper.ActionLink(..) extension method to produce something like a clickable image, you could get into trouble. In effect, the “linkText” string passed to HtmlHelper.ActionLink is automatically HTML-encoded by the helper method before producing the desired anchor element. So it seems somewhat impossible to make this sort of invocation work:
1 2 3 | <%= Html.ActionLink( "<img src='myImage.png'/>" , 'TheAction' , ...) %> |
1 2 3 4 5 6 7 8 9 10 | public static string ActionLinkEx( this HtmlHelper h, string htmlLinkText, string actionName, string controllerName, object routeValues, object htmlAttributes) { var builtCode = h.ActionLink( "*" ,actionName, controllerName, routeValues, htmlAttributes); return builtCode.Replace( "*" ,htmlLinkText); } |
No comments:
Post a Comment