24/01/2008, 11:37
|
| | | Fecha de Ingreso: noviembre-2007 Ubicación: Caracas
Mensajes: 489
Antigüedad: 17 años, 1 mes Puntos: 14 | |
Re: Problema con xajaxResponse - XAJAX Hola leoalmirante
Creo que tienes unas declaraciones de mas, te pongo el cogigo y te las muestro:
<?php
require("includes/configure.php");
require_once('login_server.php');
echo '<?xml version="1.0" encoding="UTF-8"?>'
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<html>
<head>
<?php $xajax->printJavascript(DIR_WS_XAJAX); ?>
<script type="text/javascript">
function enviaIngreso()
{
xajax.$('cmdIngresar').disabled=true;
xajax.$('cmdIngresar').value="Procesando...";
xajax_loguearUsuario(xajax.getFormValues());
return false;
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Ingreso al Sistema</title>
<link href="includes/estilos/estilo.css" media="all" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><div id="Mensaje"></div><div id="formIngresar"><form action="javascript:void(null);" id="frmIngresar" onsubmit="enviaIngreso();">
<table width="312" border="0" align="center" cellpadding="0" cellspacing="0" class="login">
<tr class="titulologin">
<td colspan="3">INGRESO AL SISTEMA </td>
</tr>
<tr class="separalogin">
<td height="1" colspan="3"></td>
</tr>
<tr>
<td width="128"> </td>
<td width="4"> </td>
<td width="180"> </td>
</tr>
<tr>
<td><label class="login">USUARIO:</label></td>
<td> </td>
<td><input name="txtUsuario" type="text" class="text alineaDerecha" id="txtUsuario" size="13" maxlength="12"></td>
</tr>
<tr>
<td><label class="login">CONTRASEÑA:</label></td>
<td> </td>
<td><input name="txtPassword" type="password" class="passwor" id="txtPassword" size="13" maxlength="12"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>Recordar
<input type="radio" name="txtRecordar" value="no" checked>
No
<input type="radio" name="txtRecordar" value="yes">
Yes</td>
</tr>
<tr class="separalogin">
<td height="1" colspan="3"></td>
</tr>
<tr>
<td colspan="3" align="center"><input type="hidden" name="action" value="login">
<br>
<input name="cmdIngresar" type="submit" class="boton" id="cmdIngresar" value="INGRESAR">
<br> </td>
</tr>
</table></form></div></td>
</tr>
</table>
</body>
</html>
Archivo login_server.php
<?php
//incluímos la clase ajax
require_once (DIR_WS_XAJAX . 'xajax_core/xajax.inc.php');
//instanciamos el objeto de la clase xajax $xajax = new xajax();
$xajax->setCharEncoding('ISO-8859-1');
$xajax->configure('decodeUTF8Input',true); $xajax->registerFunction("loguearUsuario");
$xajax->processRequest();
function loguearUsuario(){
//creo el xajaxResponse para generar una salida
$objResponse = new xajaxResponse('ISO-8859-1');
$objResponse->addAssign('Mensaje', 'innerHTML', 'Campo Vacio');
//$objResponse->alert("You may not have a blank password.");
return $objResponse;
}
//registramos la función creada anteriormente al objeto xajax
//El objeto xajax tiene que procesar cualquier petición
?>
lo destacado debe ir en login.php.
__________________ My path is lit by my own fire, I only go where I desire |