473,698 Members | 2,334 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

pass values from popup window to another popup window

134 New Member
hi

i am having a form which contains an text field.,

when the submit button is clicked the value of the textfield should be taken into the new popup window to display the results.

i had tried but didnt get the solution.,

could anyone help me

here is my code;

(page name=first.php)


Expand|Select|Wrap|Line Numbers
  1. <script type="text/javascript">
  2. function Newpopup(text)
  3. {
  4.   var  dd=document.getElementById("qq").value;
  5.   window.opener.document.newpopup_formname.fieldname.value = dd; 
  6.   win=window.open(text,'','width=1010px,height=800px,scrollbars=yes');
  7. }
  8. </script>
  9.  
  10.  
  11. <?
  12. $act=$_REQUEST['act'];
  13. $qq=$_POST['qq'];
  14.  
  15. if($act==1)
  16. {
  17. ?>
  18. <meta http-equiv="refresh" content="0;javascript:Newpopup('new_pop.php')" >
  19. <?
  20. }
  21. ?>
  22.  
  23.  
  24. <form name="form1" id="form1" action="first.php?act=1" method="post">
  25.  
  26. text field:<input type="text" id="qq" size="18" name="qq" value="<? if($act==1) echo $qq;?>">
  27.  
  28. <input name="submit" type="submit" value="Submit" />
  29.  
  30. </form>
  31.  
  32.  

so when i enter the value and click the submit button., the page gets reloaded but no pop-up window is popped out.,


thanks
regards
vijay
Jun 2 '08 #1
18 3910
vjayis
134 New Member
hi

got the solution

worked it out and finally got it.,

thanks
Jun 2 '08 #2
acoder
16,027 Recognized Expert Moderator MVP
So how did you solve it? Post your solution for the benefit of anyone passing by.
Jun 2 '08 #3
vjayis
134 New Member
So how did you solve it? Post your solution for the benefit of anyone passing by.

yes with pleasure.,and sorry for the delay

here is the solution


consider this page as the popup window page and the page name as first.php.,

Expand|Select|Wrap|Line Numbers
  1.  
  2. <script type="text/javascript">
  3. function Newpopup(text)
  4. {
  5.       win=window.open(text,'','width=1010px,height=800px,scrollbars=yes');
  6. }
  7. </script>
  8.  
  9. <?
  10.       $act=$_REQUEST['act'];
  11.       $qq=$_POST['qq'];
  12.       if($act==1)
  13.        {
  14.             $newpopup="new_pop.php?data1=".$qq;
  15. ?>
  16.        <meta http-equiv="refresh" content="0;javascript:Newpopup('$newpopup')" >
  17. <?
  18.        }
  19. ?>
  20.  
  21.      <form name="form1" id="form1" action="first.php?act=1" method="post">
  22.       text field:<input type="text" id="qq" size="18" name="qq" >
  23.       <input name="submit" type="submit" value="Submit" />
  24.       </form>
  25.  
  26.  
Jun 5 '08 #4
acoder
16,027 Recognized Expert Moderator MVP
Hmm, interesting use of the meta refresh tag. What I'd do is avoid that by using JavaScript directly to open the window during page load and pass the value in the URL, e.g.
Expand|Select|Wrap|Line Numbers
  1. <script type="text/javascript">
  2. function Newpopup(text)
  3. {
  4.       win=window.open(text,'','width=1010px,height=800px,scrollbars=yes');
  5. }
  6. <?
  7.       $act=$_REQUEST['act'];
  8.       $qq=$_POST['qq'];
  9.       if($act==1)
  10.        {
  11.             $newpopup="new_pop.php?data1=".$qq;
  12. ?>
  13. echo "Newpopup('$newpopup')";
  14. <?
  15.        }
  16. ?>
  17. </script>
  18.  
  19.      <form name="form1" id="form1" action="first.php?act=1" method="post">
  20.       text field:<input type="text" id="qq" size="18" name="qq" >
  21.       <input name="submit" type="submit" value="Submit" />
  22.       </form>
  23.  
  24.  
Oh, and thanks for posting.
Jun 5 '08 #5
vjayis
134 New Member
hi

i am with an problem once again.,

it works well in firefox., but in IE it does'nt.

the poup window gets refreshed again and again whereas the new popup was not popped out.,


tried even by replacing the meta http to the javascript given by u., but it does'nt get worked .,The function itself was not called., coz its taking the variable as the string and just printing the full statement.,

checked the semicolon in the meta http(already got problem with this)., but it seems to be perfect.,

regards
vijay
Jun 6 '08 #6
acoder
16,027 Recognized Expert Moderator MVP
That was a mistake on my part. Remove the closing and opening PHP tags:
Expand|Select|Wrap|Line Numbers
  1. <?
  2.       $act=$_REQUEST['act'];
  3.       $qq=$_POST['qq'];
  4.       if($act==1)
  5.        {
  6.             $newpopup="new_pop.php?data1=".$qq;
  7.             echo "Newpopup('$newpopup');";
  8.        }
  9. ?>
Jun 6 '08 #7
vjayis
134 New Member
cool., i didnt made mistake on this,.

i had written the code lik this only., but didnt got solution.,

i tried by using the below code.,
Expand|Select|Wrap|Line Numbers
  1. <?
  2.            $act=$_REQUEST['act'];
  3.             $qq=$_POST['qq'];
  4.             if($act==1)
  5.              {
  6.                   $newpopup="new_pop.php?data1=".$qq;
  7.                   echo "Newpopup('$newpopup');";
  8.              }
  9. ?>
  10. <script type="text/javascript">
  11. function NewWindowd(links)
  12. {
  13.   win=window.open(links,'','width=1010px,height=800px,scrollbars=yes');
  14. }
  15.  
  16. </script>
  17.  
got the resultas -> Newpopup('new_p op.php?data1=da ta'); <-

simply the line gets displayed., function is not called.

and even tried by replacing the function even without sending any values.,
but didnt yet called the function.,

Expand|Select|Wrap|Line Numbers
  1.     echo '<script type="text/javascript">NewWindowd();</script>';
  2.  

but i need to send values to the new popup.,

the meta http works well in firefox., but not in IE.,


help me to get rid of this.,

thanks
Jun 7 '08 #8
acoder
16,027 Recognized Expert Moderator MVP
got the resultas -> Newpopup('new_p op.php?data1=da ta'); <-

simply the line gets displayed., function is not called.
That's because it's not within script tags. Move the echo to within HTML <script> tags.

Whatever you try, check the source in the browser (View -> Source) and post that here.
Jun 7 '08 #9
vjayis
134 New Member
That's because it's not within script tags. Move the echo to within HTML <script> tags.

Whatever you try, check the source in the browser (View -> Source) and post that here.

hi

tried by the changes given by u.,
still didnt get the solution.

tried just to call the function without passing any values., but that too was not called.,

Expand|Select|Wrap|Line Numbers
  1.  <?
  2.           $act=$_REQUEST['act'];
  3.            $qq=$_POST['qq'];
  4.             if($act==1)
  5.             {
  6. ?>
  7.  
  8. <script type="text/javascript">
  9. <? echo "Newpopup()";?>
  10. </script>
  11.  
  12. <?
  13.             }
  14. ?>
  15. <script type="text/javascript">
  16.       function NewWindowd()
  17.       {
  18.        alert("function called");
  19.         win=window.open(links,'','width=1010px,height=800p  x,scrollbars=yes');
  20.       }
  21. </script>
  22.  
this was in the view source before submitting the form.,
Expand|Select|Wrap|Line Numbers
  1. <script type="text/javascript">
  2. function NewWindowd()
  3. {
  4.  
  5.   alert("function called");
  6.   win=window.open(text,'','width=1010px,height=800px,scrollbars=yes');
  7. }
  8.  
  9. </script>
  10.  
and after submitting this was in the view source.,

Expand|Select|Wrap|Line Numbers
  1. <script type="text/javascript">
  2.  NewWindowd()</script>
  3.  
  4. <script type="text/javascript">
  5. function  NewWindowd()
  6. {
  7.  
  8.   alert("function called");
  9.   win=window.open(text,'','width=1010px,height=800px,scrollbars=yes');
  10. }
  11.  
  12. </script>
  13.  
note:the function was not called even in firefox.


And even tried just by simply writing the code as below
Expand|Select|Wrap|Line Numbers
  1. $act=$_REQUEST['act'];
  2. $qq=$_POST['qq'];
  3. //echo $act;
  4. if($act==1)
  5. {
  6. ?>
  7. <script type="text/javascript">
  8. NewWindowd();
  9. </script>
  10.  
  11. <?
  12. }
  13. ?>
  14. <script type="text/javascript">
  15. function NewWindowd()
  16. {
  17.  
  18.   alert("function called");
  19.   win=window.open(text,'','width=1010px,height=800px,scrollbars=yes');
  20. }
  21.  
  22. </script>
  23.  
but that too didnt get worked.,


i very much in need of this script to work., help me in this
Jun 7 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

2
1613
by: Marco Antonio Montalvo Durán | last post by:
hi for example, I have a page 'register.aspx' and open a second page 'popup.aspx', what I want to do is to pass the control and values obtained in 'popup.aspx' to 'register.aspx', somebody help!!! thanks
1
9363
by: colleen1980 | last post by:
Hi: Can any one please tell me that how to i pass the two textbox values in the new page. If i use the form action in the popup window page then the new page is open in the same popup window as i need to open the new page in the main page window with passing the two textbox parameters into the new page. Program opens the new page but dont know how to pass the two textboxes values into the new page name deceasedToday.asp Needs help in...
1
2116
by: selvamsivalingam | last post by:
i call the popup window through javascript by using the below code. <script language="javascript"> function hpclick() { var WinSettings = "center:yes;resizable:yes;dialogHeight:300px" window.showModalDialog("http://localhost:4911/WebSite19/Create_category.aspx",WinSettings); } </script>
0
8674
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9027
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8895
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8861
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4369
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3046
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.