Hola:
Luego de leer todas las FAQ's no encontre ninguna funcion que me deje el foco en un lugar determinado de mi formulario al momento de cargar la pagina.
Creo que no debe ser dificil ni tampoco muy distinta de la que yo he creado.
Bueno, aca esta el codigo. Espero que solucionen mi problema por que a mi no me resulta
Código PHP:
<?php
require("config.inc");
?>
<html>
<head>
<title>PYMESRED | TIE</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../estilo_tie.css" rel="stylesheet" type="text/css">
</head>
<script>
function inicio(form)
{
document.form.txtlogin.focus ();
}
function ingresar(form){
if(form.txtlogin.value == ""){
alert("Ingrese Login");
form.txtlogin.focus();
return false;
}
form.submit();
}
</script>
<body bgcolor="#FFFFFF" background="../img/trama_pymesred.gif" link="#000000" vlink="#000000" alink="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="inicio(window.document.form);"><?php
if(isset($_POST["txtlogin"])){
$sql = "select count(a.us_id),a.pe_id
from pym_usuarios a, pym_perfiles b
where a.us_login = '".strtoupper($_POST["txtlogin"])."' and a.us_password = '".strtoupper($_POST["txtpassword"])."'
and a.pe_id = b.pe_id group by a.pe_id";
$cn = conectar_oracle("pymesred@rmdy", "pym2004");
$lst_login = select_data($cn, $sql, $fil, $col);
desconectar_oracle($cn);
if($lst_login[0][0] > 0){
$_SESSION["gUSUARIO_PYM"] = strtoupper($_POST["txtlogin"]);
$_SESSION["gPERFIL_PYM"] = $lst_login[0][1];
if ($_SESSION["gPERFIL_PYM"]==1)
{
print("<script>");
print("location.href='admin/index.php';");
print("</script>");
}
if ($_SESSION["gPERFIL_PYM"]==3)
{
print("<script>");
print("location.href='ejecutivos/index.php';");
print("</script>");
}
if ($_SESSION["gPERFIL_PYM"]==5)
{
print("<script>");
print("location.href='ejecutivos/index.php';");
print("</script>");
}
}else{
$_SESSION["gUSUARIO_PYM"] = "";
}
}
?>
<table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><?php require("../cabecera.php");?></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="3">
<form name="form" method="post" action="">
<tr>
<td align="right" class="texto12"><b>Login:</b></td>
<td><input name="txtlogin" type="text" class="editbox12" id="txtlogin" size="15" maxlength="15"></td>
</tr>
<tr>
<td align="right" class="texto12"><b>Password:</b></td>
<td><input name="txtpassword" type="password" class="editbox12" id="txtpassword" size="15" maxlength="15"></td>
</tr>
<tr>
<td> </td>
<td><input name="cmdingresar" type="button" class="editbox12" id="cmdingresar" value="Ingresar..." onClick="ingresar(document.form);"></td>
</tr>
</form>
</table></td>
</tr>
</table>
</body>
</html>
Gracias...
Salu2 !!!