vote up 0 vote down star

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/ >
<% } %>
flag

3 Answers

vote up 1 vote down check

Yep, Spark is probably your friend on that one. Looks pretty similar in spirit.

<c:forEach var="c" items="${Customers}">
  <c:out value="${c.Name}"/><br/ >
</c:forEach>

becomes

<for each="var c in Customers">
  ${c.Name}<br/>
</for>
link|flag
vote up 0 vote down

The closest thing I know is the Spark view engine.

link|flag
vote up 0 vote down

The view engines which are closest to JSTL style coding are:

From a JSTL prospective Sharp tiles would be the better in the sense of appliance and learning curve

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.