Return value to parent page from popup

K

Kevin Attard

Hi,

Is there a way to return a value from a control inside a popup and assign it
to a control inside the parent form?

Thanks,
kev
 
K

Kevin Attard

currently
btnSelectPerson.Attributes.Add("onclick",
"window.open('Persons.aspx',null,'height=600, width=800,status= no,
resizable= yes, scrollbars=yes, toolbar=no, location=no, menubar=no');");



Eliyahu Goldin said:
How do you open the popup? With showModalDialog?

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


Kevin Attard said:
Hi,

Is there a way to return a value from a control inside a popup and assign
it to a control inside the parent form?

Thanks,
kev
 
E

Eliyahu Goldin

A page opened with a window.open call gets a reference to the page that
opened it in window.opener property. You can call a javascript function as

window.opener.setPopupResults ("ok");

where setPopupResults is a javascript function you can write for accepting
string values from the popup. Depending on your requirements, this function
can set the control value on client side or pass the value on to the server
to finish the job there.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


Kevin Attard said:
currently
btnSelectPerson.Attributes.Add("onclick",
"window.open('Persons.aspx',null,'height=600, width=800,status= no,
resizable= yes, scrollbars=yes, toolbar=no, location=no, menubar=no');");



Eliyahu Goldin said:
How do you open the popup? With showModalDialog?

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


Kevin Attard said:
Hi,

Is there a way to return a value from a control inside a popup and
assign it to a control inside the parent form?

Thanks,
kev
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,062
Latest member
OrderKetozenseACV

Latest Threads

Top