Are there any libraries that support JSTL style coding in an ASP MVC view?
I much prefer
<c:forEach var="c" items="${Customers}">
<c:out value="${c.Name}"/><br/ >
</c:forEach>
to
<% foreach(Customer c in customers) { %>
<%= c.Name %><br/ >
<% } %>