Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pass info from Popup Window 1

Status
Not open for further replies.

rtshort

IS-IT--Management
Feb 28, 2001
878
US
I have a window that when it pops up I pass variables to it to fill a grid:

'window.open "ChoosePart.aspRefNo="+PartRefNo+"&Name="+PartName+"&TName="+TableName, "ChoosePart", "Width=550,Height=250,ReSizeable=no"

I have all of the code for this working fine. It uses the Select Statement and fills the grid properly. Now when the user selects a row in the grid, I have(on the main Page) another grid that I want to add it to.

How do I get it from the Popup back to the original window? Rob
Just my $.02.
 
If I understand you correctly, you need to use window.opener.location.href = window.opener.location.href + 'var1=' + firstvalue + 'var2' + secondvalue

etc etc.

Hope this helps

 
Thanks Spaz, I called myself trying that but I must have missed something. I'll give it another try. Thanks. Rob
Just my $.02.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top