Getting information from a popup window

  • Thread starter Thread starter Gustavo De la Espriella
  • Start date Start date
G

Gustavo De la Espriella

Hi,
I have the following problem.

To fill a textbox in one page, I call a popup window with the choices. And
when I click OK in this popup window, I need its data to go directly to the
text box in the page that called the Popup.

So far I call the popup with a
"window.open('SeleccionDirectorio.aspx',...etc)" code.
And use a session variable to store the choice the user made in the
SeleccionDirectorio.aspx popup page.

How can I make that information go to the text box in the first page as soon
as I close the popup?

Your help will be appreciated,
Gustavo De la Espriella
 
this isn't really an asp.net problem, its a client problem. Hence, you fall
under the standard javascript conventions of passing values to the parent
page.

have a read of something like this
http://lists.evolt.org/archive/Week-of-Mon-20000731/014953.html

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
 
Back
Top