Hi All,
As i understand asp.net mvc 2 allows use to invoke an action directly without mvc futures. so instaed of:
<%Html.RenderAction
we can use:
<%Html.Action
I'm using an Helper class to invoke the action but inside the helper class i cannot find the .Action attirbute:
public static void CatalogList(this HtmlHelper helper, string text)
{
helper.ac
}
there is no Action, but it work inline in the aspx file:
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>Category</h2>
<%Html.Action( %>
not sure what i'm doing wrong, i really like the call to be in the helper and not inline.
Thanks