C
Chris
Hi,
i want to redirect to another page like here below in asp.net, but in
javascript and without menubar, toolbar etc ... :
Response.Redirect(String.Format("/myserver/myapp.aspx?Item0={0}&Item1={1}",
param1, param2))
i tried this, but the parameters are not passed to the other page.
<script type="text/javascript">
function fen() {
var hd1 = param1
var hd2 = param2
x = "left=200,top=200,width=600,height=400,title=no,toolbar=no,
menubar=no,location=no,directories=no, scrollbars=yes"
a = window.open("/myserver/myapp.aspx?Item0={0}&Item1={1}", hd1,
hd2, "", x)
}
</script>
Thanks for help.
Chris.
i want to redirect to another page like here below in asp.net, but in
javascript and without menubar, toolbar etc ... :
Response.Redirect(String.Format("/myserver/myapp.aspx?Item0={0}&Item1={1}",
param1, param2))
i tried this, but the parameters are not passed to the other page.
<script type="text/javascript">
function fen() {
var hd1 = param1
var hd2 = param2
x = "left=200,top=200,width=600,height=400,title=no,toolbar=no,
menubar=no,location=no,directories=no, scrollbars=yes"
a = window.open("/myserver/myapp.aspx?Item0={0}&Item1={1}", hd1,
hd2, "", x)
}
</script>
Thanks for help.
Chris.