Tema: JSP Basico 1
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/01/2012, 20:26
da_vp
 
Fecha de Ingreso: enero-2012
Mensajes: 1
Antigüedad: 12 años, 5 meses
Puntos: 0
Información JSP Basico 1

<%!
String getMensaje(String msg)
{
return msg;
}
%>

<html>
<head>
<title>Message Show</title>
</head>
<body>
<center>
<h1>Mostrando Mensaje</h1>
<br><br>

<%
for(int i=1;i<=6;i++)
{
%>
<font color="#FF0000">
<h<%=i%>>
<%=getMensaje("Hola Mundo..!!")%>
</h<%=i%>>
</font>
<%
}

%>

<br><br>

<%
for(int i=6;i>=1;i--)
{
%>
<font color="#f000f0">
<h<%=i%>>
<%=getMensaje("Hola Mundo..!!")%>
</h<%=i%>>
</font>
<%
}

%>

</center>
</body>
</html>