1.asp 2.asp 3.asp之间的关系是什么,你的问题容易导致歧义

解决方案 »

  1.   

    建议你把1中的对象作为参数vArguments传给模态窗口。
    vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures])
      

  2.   

    给你个例子:myObject就是参数
    function fnLaunch()
    {
        var aForm;
        aForm = oForm.elements;
        var myObject = new Object();
        myObject.firstName = aForm.oFirstName.value;
        myObject.lastName = aForm.oLastName.value;
    // The object "myObject" is sent to the modal window.
        window.showModalDialog("modalDialogSource.htm", myObject, "dialogHeight:300px; dialogLeft:200px;"); 
    }
      

  3.   

    parent.opener.<object> ……