kaju Tiwari

Greenhorn
+ Follow
since Dec 10, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by kaju Tiwari

Hi i am new to Web component . Can any body tell what is wrong in my code. When i execute it i get blank page no error.

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<%
String [] myList = {"gadar","lagaan","DCH","ghayal"};
%>


<c:forEach var="listOfMovie" items="${myList}">
<tr>
<td>
${listOfMovie}
</td>
</tr>
</c:forEach>