Html helper extension works if I do <%= .. %> but not if I do <% Html.MyExt(); %>
- by Blankman
Why does my html helper extension work if I do:
<%= Html.MyExt() %>
all mvc helpers work like:
<% Html.TextBox(""); %>
My extension builds a StringBuilder, then returns a string.