I hava a button to pop up a child window, on the event on close on that pop up window, i will assign a value to a textbox on the parent window. After assign, i will close the child window.
But I got problem, if the textbox on parent window is visible, i can assign the value, BUT if the textbox is not visible, I cant assign and close the child window, and I need that textbox to be invisible, please advice me.
"window.opener.Form1." & _
HttpContext.Current.Request.QueryString("ctrlNameHidden") & ".value = '" & _
strDTM & "';window.close();"
Thanks You.