<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.

[356 byte] By [jasdeepikaa] at [2007-11-27 4:58:07]
# 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?

amol_0008@rediffmail.coma at 2007-7-12 10:13:54 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...