
19/03/2003, 05:54
|
| | Fecha de Ingreso: noviembre-2001 Ubicación: Groningen
Mensajes: 175
Antigüedad: 23 años, 4 meses Puntos: 0 | |
No,
todavia lo tengo offline...
Te envio algo mas de informacion.
el menu es simplemente, una secuencia de links como el sigue.
<a href='javascript:void(null);' onClick="+chr(34)+"LoadPagina('afnemer_teksteditor .asp?update=1'); this.onclick.returnValue=false;"+chr(34)+">Upgrade </a>
en el sitio de microsoft encontre informacion sobre returnValue
-----------------------------------------------------------------------------------
Sets or retrieves the return value from the event.
Syntax
event.returnValue [ = bValue ]
Possible Values
bValue Variant that specifies or receives one of the following values.true Default. Value from the event is returned.
false Default action of the event on the source object is canceled.
The property is read/write. The property has a default value of true.
-----------------------------------------------------------------------------------
en primera instancia tenia la funcion LoadPagina cargada en el href, pero luego de buscar soluciones al problema este, he dejado el <a> mas o menos como lo ves.
la funcion LoadPagina esta implementada como sigue
function LoadPagina(URL){
if(window.top.inhoud){
window.top.inhoud.location=URL;
}else{alert("Er heeft zicht een fout voor gedaan.......");}
}
espero que ahora alla pasado as informacion.
ed |