rexselin
08-20-2004, 02:21 AM
Hi all,
I have a requirement in which I need to open a popup window . I need to pass on so many data also to this popup window.
As of now am doing it like ,
<script language="JavaScript">
window.open('mypopupwindow.html?query1=23&query2=3734','details',"height="+height+",width="+width+",status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
</script>
The length of my query string is getting increased as I need to pass more and more values to that pop up window page. I know I can make a form post to a new window like
<form action=mypopupwindow.html target="new">
But in this case,I wouldn't be able to control the properties of the popup window like height,width,toolbars etc.
Does anyone know how I cam make this work?
Thanks in advance.
Regards,
Celia
I have a requirement in which I need to open a popup window . I need to pass on so many data also to this popup window.
As of now am doing it like ,
<script language="JavaScript">
window.open('mypopupwindow.html?query1=23&query2=3734','details',"height="+height+",width="+width+",status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
</script>
The length of my query string is getting increased as I need to pass more and more values to that pop up window page. I know I can make a form post to a new window like
<form action=mypopupwindow.html target="new">
But in this case,I wouldn't be able to control the properties of the popup window like height,width,toolbars etc.
Does anyone know how I cam make this work?
Thanks in advance.
Regards,
Celia