I've been using ASP.Net MVC for a while now and I've been thinking that this:
<% foreach(ItemRow in Items) { %> <div><%=ItemRow.Description%></div> <% } %>
Reminds me a little too much of ASP Classic and PHP. Yeah there are definite improvements but it still makes me cringe a little.
I've been thinking instead of writing nothing but static html and strictly using jQuery to gather JSON results from webservices and populate the page appropriately. Has anyone tried this approach? What was your experience?