13/02/2013, 08:59
|
| | | Fecha de Ingreso: mayo-2009
Mensajes: 2.175
Antigüedad: 15 años, 8 meses Puntos: 306 | |
Respuesta: Valor en jsp http://webtech-kapil.blogspot.de/200...ull-check.html Cita: The above tag is to check whether parameter name is null or not. If it is not null then it prints out the sentence and it prints nothing if the value is null.
< c:if test="${param.name ne null}">< /c:if>
A test shows that parameter name contains value of ${param.name} via "ne" operator
Above codes are working similarly with the previous codes. We just want to test JSP notation “ne” for not equal function as what “!=” does.
< c:if test="${not empty(param.name)}">< /c:if>
A test shows that parameter name contains value of ${param.name} via empty operator.
__________________ Cada vez que solucionas los problemas de alguien que no se esfuerza, piensa en que el día de mañana puede llegar a ser tu compañero de trabajo, o peor, tu jefe. |