Performance impact of wrapping ActionLink extension method inside a partial view

Posted by nuhusky2003 on Stack Overflow See other posts from Stack Overflow or by nuhusky2003
Published on 2010-03-08T17:16:15Z Indexed on 2010/03/08 17:21 UTC
Read the original article Hit count: 418

What would be a performance impact if I wrapped every call to an action link (ex. <%=Html.ActionLink(....)) inside a partial view. So in other words instead of calling html extension method for actionlink I would call a html extension method for rendering partial view, and my partialview (user control) would execute the Html.ActionLink(...) method?

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about partial-views