B
Bob
Hi,
i want to use Response.Redirect with parameters but also restricting the
browser capabilities (no menubar, no title etc ...)
I know this in VB.net:
Sub page_load()
Dim qna, dir As String
qna = "xxx"
dir = "yyy"
Response.Redirect(String.Format("/enq.aspx?Item0={0}&Item1={1}",
qna, dir))
End Sub
</script>
I also know this in Javascript:
<script language="javascript" type="text/javascript">
xx="left=200,top=200,width=600,height=200,title=no,toolbar=no,
menubar=no,location=no,directories=no, scrollbars=yes"
a=window.open("enq.aspx","",xx)
</script>
But how to combine both codes?
Thanks
Bob
i want to use Response.Redirect with parameters but also restricting the
browser capabilities (no menubar, no title etc ...)
I know this in VB.net:
Sub page_load()
Dim qna, dir As String
qna = "xxx"
dir = "yyy"
Response.Redirect(String.Format("/enq.aspx?Item0={0}&Item1={1}",
qna, dir))
End Sub
</script>
I also know this in Javascript:
<script language="javascript" type="text/javascript">
xx="left=200,top=200,width=600,height=200,title=no,toolbar=no,
menubar=no,location=no,directories=no, scrollbars=yes"
a=window.open("enq.aspx","",xx)
</script>
But how to combine both codes?
Thanks
Bob