![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
07/05/2003, 07:59
|
![Avatar de mazingerz](http://static.forosdelweb.com/customavatars/avatar30698_1.gif) | | | Fecha de Ingreso: febrero-2003 Ubicación: Sarasota FL
Mensajes: 147
Antigüedad: 22 años Puntos: 0 | |
Tunait, la gracia estaba en el ACTION, despues de tanto probar, asi funciono.
Saludos.
function grabar()
{
var d=document.detallecaso;
var sql_value = "";
if (d.id_caso.value=="0")
{ // caso Nuevo
if ( validainput()==true )
{
sql_value = '(' + d.id_cliente.value +',';
....
....
sql_value = sql_value + d.honorarios.value + ')';
document.detallecaso.action='insertcaso.asp?Opcion =nuevo&value='+sql_value
document.detallecaso.method="POST"
document.detallecaso.target="Frame_Caso_Down"
document.detallecaso.submit(); }
else {window.alert ("Datos Erroneos, revise los datos");}
}
}
} |