Posted on: 3/6/2015 1:01:27 PM | Views : 578

Hi,
I have a form that lists (for example) 50 company employees.
The form lets you select their gender (male/female) for each employee but also, next to each name, there is a button titled "Date Of Birth".
These buttons were added to each employee row in the code-behind using pnlEmployees.Controls.Add(btnEmployee_1234567890);
When these "Date Of Birth" buttons are clicked, I bring up a pop-up window (using Jquery) that allows you to select their date of birth using a calendar control.
The problem I have, is that I need to update the parent window after the user has selected the employee's age.
I know you can refresh the parent page by adding the following to the age pop-up window:
btnAgeSave.Attributes.Add("onclick", "refreshParent();"); Or
Response.Write("<script>window.opener.location.reload();</script>&q ...

Go to the complete details ...