abyinsydney
Programmer
greetings people
Can any one please help me with the below mentioned code
i'm a getting error string type cast.
At run time i'm entering the value for first name (param.firstname).According to the for loop sysntax this has to be an int however param .first name returns a string .Can any one of u tell me how to handle this scenario
<html>
<head>
<%@ taglib uri=" prefix="c" %>
<title>login.jsp</title>
</head>
<body>
<table>
<c:forEach var="counter" begin="1" end="${param.firstname}"/>
<input type="text" name= "<c
ut value="input_${counter}" />"> <br>
</c:forEach>
</table>
</body>
</html>
Can any one please help me with the below mentioned code
i'm a getting error string type cast.
At run time i'm entering the value for first name (param.firstname).According to the for loop sysntax this has to be an int however param .first name returns a string .Can any one of u tell me how to handle this scenario
<html>
<head>
<%@ taglib uri=" prefix="c" %>
<title>login.jsp</title>
</head>
<body>
<table>
<c:forEach var="counter" begin="1" end="${param.firstname}"/>
<input type="text" name= "<c
</c:forEach>
</table>
</body>
</html>