I have a JavaScript function that looks like this. I need help passing these values from JavaScript of the pop up window to the parent window. I know that I have to use
window.opener.document.getelementbyD("ID Of TextBox");
method in my child aspx page but the textbox
is inside another user control. How do I do it?
function(PersonName, EmailID){
//assign these values to text boxes of a parent window
//the text boxes of parent window are inside of control
}
Regards
-Vishu