Click to See Complete Forum and Search --> : help needed very urgent


mailtozak
07-13-2008, 01:52 AM
HI friends..........

I am new to java script. This application i am doing in vs-2008(asp.net).

Specifically what I wanted was a child page that I could edit database information, add or make changes, and then update the changes back to the parent. The pop-up would contain the data for a dropdown list on the parent page, if the child is updated or deleted then I want the parent to refresh the dropdown list and not loose all the other information on the page. From the parent page user a button, hyperlink, or any control of you’re choosing.

I am using javascript window.open() to open new window and i am updating the database by selecting the values in the child page. But when i close the child page,my parent page is getting refresh. I am loosing all my data in the page.

Actually i want to refresh the dropdown list in the parent window when i close the child page, without loosing the rest of the information in parent page.


Kindly help me.

Fang
07-13-2008, 02:16 AM
Change the parent document using, not a reload of the parent document.opener.document.formName.fieldName.value=info;
A link to your document would be helpful.