I have the following code in my
jsp.
<c:set var="Fido" value="${userName}"/>
I want to display the value set in "Fido"
I tried this
The dog's name is ${Fido} // It didn't work
I also tried
The dog's name is <c
ut value="${Fido}"/> // It also didn't work
I also wanted to know Whether the value we have set in "var" cannot be used as a EL expression.
Please respond at the earliest.