<c:set> and <c:out>
Hi ,
I need to set html form values in the variable using <c:set> and display it in a same form.
But I could n't able set & display it
And also,One doubts, where i want to write this type of coding(<c:set/> & <c:out/>) either within <form> or <body> or anywhere else ?
please help me.
# 1
not getting ur exact requirment
if u are submitting the form on the same page
then u can show data using EL
<c:if test="${param.name != null}" >
${param.name}
${param.address}
</c:if>
n if u wana set it using <c:set>
then check
<c:if test="${param.name != null}" >
<c:set var="userNm" value="${param.name}"/>
</c:if>
this file must be .jspfile
is it ok?