passing values from a dialog
Hi,
I'm creating a modal dialogue box:
if (window.showModalDialog)
{
window.showModalDialog("login.htm",window,"dialogW idth:255px;dialogHeight:250px");
}
Now login.htm is a form, and I want to be able to pass the form values into a string back to the parent window. How can I do this?
|