param : implicit EL (Expression Language) object in JSP
Posted
by coffy
on Stack Overflow
See other posts from Stack Overflow
or by coffy
Published on 2010-06-15T14:49:44Z
Indexed on
2010/06/16
16:22 UTC
Read the original article
Hit count: 230
What if I have URL like: servlet.jsp?myparam=myvalue
These 2 ELs should return output "myvalue" , but I actually don't understand why?:
${param.values["myparam"]["0"]}
${param.values.myparam[0]}
© Stack Overflow or respective owner