Does anyone know the syntax for creating a custom HtmlHelperextension method which behaves like..
<% using (Html.BeginForm()) {%>
<p>Loads of html stuff here </p>
<% } %>
I'm thinking of something along the lines of....
<% using (Html.BeginTable("Column Heading 1", "Column Heading 2")) {%>
<% } %>
Any ideas?
Cheers,
ETFairfax