Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

java script popup close and then postback main form

I have javascript to open a popup. when this form closes I want the calling form to postback

     function OpenChild(strImgType) {

        var WinSettings = "center:yes;resizable:no;dialogHeight:300px"
   
        var MyArgs = window.showModalDialog("../PopupForm.aspx?Product_ID=" + prodid + "&ImageType=" + strImgType, MyArgs, WinSettings)

    }
ASKER CERTIFIED SOLUTION
Avatar of SRigney
SRigney
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vbnetcoder
vbnetcoder

ASKER

ty