Query String!
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
Hi, I have a javascript code for pop window. I want to pass values from this calling page to that pop window and similarly i want to send some data from that window to this called page. Plz Help me..... Thanks in advance!
Lakshmi
-
Hi, I have a javascript code for pop window. I want to pass values from this calling page to that pop window and similarly i want to send some data from that window to this called page. Plz Help me..... Thanks in advance!
Lakshmi
blakshmi wrote:
I want to pass values from this calling page to that pop window
just send as normal query string window.open("mypage.aspx?querystring...");
blakshmi wrote:
similarly i want to send some data from that window to this called page.
Use Window.opener or window.parent
cheers, Abhijit