vote up 1 vote down star

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.

How do I do this?

flag

73% accept rate

3 Answers

vote up 6 vote down check

You will have to do something like:

parent.opener.document.getElemenyById('ParentTextBox').value = "New Text";
link|flag
vote up 2 vote down

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.

http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx

link|flag
vote up 0 vote down

@Cptcecil - I would like to do that but this particular project has a current requirement not to use Ajax.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.