Hi friends,
i am handling a very old project developed in .net 2003 version (1.1 framework).
i submit form with method="post" and
I pass lots of values from a form to other and read them in next page with
For Each item As String In Request.Form.Al lKeys
code goes here
next
till now i was using sever.transfer( "url"); and it went fine.
Now my requirement is to open the form in new window.
as we cannot open in new window with either server.transfer or response.redire ct, i am in dilemma.
i got a thought of using java script function window.open() but how do i read all the parameters in next page?
so please let me know if you know a better approach.
thank you
i am handling a very old project developed in .net 2003 version (1.1 framework).
i submit form with method="post" and
I pass lots of values from a form to other and read them in next page with
For Each item As String In Request.Form.Al lKeys
code goes here
next
till now i was using sever.transfer( "url"); and it went fine.
Now my requirement is to open the form in new window.
as we cannot open in new window with either server.transfer or response.redire ct, i am in dilemma.
i got a thought of using java script function window.open() but how do i read all the parameters in next page?
so please let me know if you know a better approach.
thank you
Comment