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.' };

Archivo

Archivo del autor

MySQL - Netbeans

martes, 12 de enero de 2010 Sin comentarios

Primero creamos una BD llamada en este caso persistencia, y una tabla (por el momento) llamada estudiante.

Para que aparezca nuestro mapa de google escribimos el siguiente código:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAItmGOOWMATeNPPtTtijirhR-fISyzToDSzqXOaLLC8suCdwDiBTdP3cQ_557h_feZH57rO5xmvrxMw&sensor=false"
type="text/javascript"></script>
<script type="text/javascript">

function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(-2.200623, -79.921678), 11);
map.setUIToDefault();
}
}
</script>
</head>
<body onload="initialize()" onunload="GUnload()">
<div id="map" style="width: 500px; height: 300px"></div>
<form action="Servlet" method="get">
<input type="submit" value="Consultar">
</form>
</body>
</html>

Categories: General Tags:

Sugerencias

jueves, 7 de enero de 2010 Sin comentarios

Aqui les dejo algunas sugerencias para alguna aplicacion con filtros:

Una sugerencia para los filtros con archivos es que direccionen bien el archivo con la direccion raiz, aqui suele haber errores cuando pasan de una maquina a otra cambia la direccion.

PARAM-VALUE

PARAM-VALUE

Categories: General Tags:

Screenshots

jueves, 7 de enero de 2010 Sin comentarios
Categories: General Tags:

Avance Login

jueves, 7 de enero de 2010 Sin comentarios

Se implemento por parte del grupo la pagina Login.jsp

La cual tiene el siguiente codigo, el cual invoca a un Servlet para almacenar Informacion del usuario.

<%@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 Page</title>
</head>
<body>
<form action="myServlet">
<label>User:</label>
<input type="text" name="user" id="user">

<input type="submit" value="clic me ">
</form>

</body>
</html>

Categories: General Tags:
Ir a la barra de herramientas