Hii i am trying to get the values of a list on jsp
<core:forEach items="${loginsuccess}" var="items">
<core:out value="${items}">
</core:out>
in this code tegre are three entries or more than one
我想在一行中显示,而在新行中显示但是它在一行中一个接一个地显示,所以请告诉我该如何做到这一点 我想在一行中显示一个而不是在新行中显示,但它在一行中一个接一个地显示,所以请告诉我该怎么做
答案 0 :(得分:0)
试试这个:
<core:forEach items="${loginsuccess}" var="items">
<core:out value="${items}"/><br/>
</core:forEach>