Hi all, first i’ll explain the problem.
I need to pass a lot of big variables to a browser window, but that window must be opened with Jscript, so it haves fixed size, no scrollbars, no menu and so on.
Well, the Jscript window.open fails when i pass too long variables or too many of them. (I think it’s for the querystring length, seems to be ok if I pass less variables or shorter ones);
here it’s my code
on (release) {
/set lot of variables to send/
jid_artista = _parent._parent.ida;
…
…
…
…
getURL(“javascript:void(window.open(‘http://localhost/my_page/subir_archivos/mp3.php?artista="+jartista+"&titulo="+jtitulo+"&campo_musical="+jcampo_musical+"&estilo_musical="+jestilo_musical+"&fecha_composicion="+jfecha_composicion+"&medios_utilizados="+jmedios_utilizados+"&autores="+jautores+"&voces="+jvoces+"&autores_letra="+jautores_letra+"&creditos_adicionales="+jcreditos_adicionales+"&comentarios="+jcomentarios+"&letra_original="+jletra_original+"&letra_traducida="+jletra_traducida+"&id_artista="+jid_artista+"’,’_blank’,'width=300,height=100,top=300,left=360 scrollbars=NO resizable=NO Directories=NO Location=NO Menubar=NO Toolbar=NO’))”,"",“POST”);
}
And that it’s all, anyone fixed this problem before or have other system to send variables to an Jscript window.open?
Thanks all for view this thread. 