Hi all,
Here is my dilemma: I have an aspx page with a button on it. onclick the button calls some javascript to pop up a window with a listBox with a bunch of values.
I'm creating the popup like this to avoid a popup blocker from stopping it:
onclick="window.open('myPopUp.aspx','myPopUp','width=220,height=425,top=250,left=500,resizable=no')"
What i need is this: when the user selects a value and clicks the button on the pop up screen, i need to pass the values the user has selected BACK to the page that the user was on (the page that had the pop up button). I was reading around, but i couldn't find anything. Any ideas?