hs.lang = { cssDirection: 'ltr', loadingText: 'loading...', loadingTitle: 'click to cancel', focusTitle: 'click to bring to front', fullExpandTitle: 'expand to original size', creditsText: 'powered by Highslide JS', creditsTitle: 'visit Highslide JS website', previousText: 'previous', nextText: 'next', moveText: 'move', closeText: 'close', closeTitle: 'close (ESC)', resizeTitle: 'resize', playText: 'play', playTitle: 'play slideshow (SPACEBAR)', pauseText: 'pause', pauseTitle: 'pause slideshow (SPACEBAR)', previousTitle: 'previous (ARROW LEFT)', nextTitle: 'next (ARROW RIGHT)', moveTitle: 'move', fullExpandText: 'fullscreen', number: 'picture %1 of %2', restoreTitle: 'Click to close image, click und drag to move. Use ARROW keys for previous and next.' };
Inicio > General > Avance opcionx.jsp

Avance opcionx.jsp

Implementamos la página opcionx.jsp la cual tiene un pequenio código de Scriptlets con el cual se puede recuperar la información del Cliente almacenado en la Cookie.

El código de una pagina de Prueba se presenta acontinuación.

<%@page contentType=»text/html» pageEncoding=»UTF-8″%>
<!DOCTYPE HTML PUBLIC «-//W3C//DTD HTML 4.01 Transitional//EN»
«
http://www.w3.org/TR/html4/loose.dtd«>

<html>
<head>
<meta http-equiv=»Content-Type» content=»text/html; charset=UTF-8″>
<title>JSP Page1</title>
</head>
<body>
<%

out.println( «<BR>Bienvenido » );
Cookie[] coo = request.getCookies();
String us=»No Funciono»;
for(int i=0;i<coo.length;i++){
if(coo[i].getName().equals(«user»)){
us = coo[i].getValue();
}
}
out.println(us);
out.println(«Ud a Elegido la Opcion 1»);
%>

</body>
</html>

Categories: General Tags:
  1. Sin comentarios aún.
  1. Sin trackbacks aún.


Ir a la barra de herramientas