How do I insert text into a textbox after popping up another window to request information? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T21:50:19Zhttp://stackoverflow.com/feeds/question/55203http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/55203/how-do-i-insert-text-into-a-textbox-after-popping-up-another-window-to-request-in1How do I insert text into a textbox after popping up another window to request information?Guy2008-09-10T20:14:01Z2008-09-10T22:52:34Z
<p>I have an asp.net web page written in C#. Using some javascript I popup another .aspx page which has a few controls that are filled in and from which I create a small snippet of text. When the user clicks OK on that dialog box I want to insert that piece of text into a textbox on the page that initial "popped up" the dialog/popup page. I'm guessing that this will involve javascript which is not a strong point of mine.</p>
<p>How do I do this?</p>
http://stackoverflow.com/questions/55203/how-do-i-insert-text-into-a-textbox-after-popping-up-another-window-to-request-in/55222#552222Answer by Cptcecil for How do I insert text into a textbox after popping up another window to request information?Cptcecil2008-09-10T20:19:33Z2008-09-10T20:19:33Z<p>What you could do is create an ajax modal pop-up instead of a new window. The semantic and aesthetic value is greater not to mention the data-passing is much easier.</p>
<p><a href="http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx" rel="nofollow">http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx</a></p>
http://stackoverflow.com/questions/55203/how-do-i-insert-text-into-a-textbox-after-popping-up-another-window-to-request-in/55242#552426Answer by GateKiller for How do I insert text into a textbox after popping up another window to request information?GateKiller2008-09-10T20:27:05Z2008-09-10T20:27:05Z<p>You will have to do something like:</p>
<pre><code>parent.opener.document.getElemenyById('ParentTextBox').value = "New Text";
</code></pre>
http://stackoverflow.com/questions/55203/how-do-i-insert-text-into-a-textbox-after-popping-up-another-window-to-request-in/55456#554560Answer by Guy for How do I insert text into a textbox after popping up another window to request information?Guy2008-09-10T22:52:34Z2008-09-10T22:52:34Z<p>@<a href="#55222" rel="nofollow">Cptcecil </a>- I would like to do that but this particular project has a current requirement not to use Ajax.</p>