How do you get the return value from a modal dialog box in vbScript? I have the following code in an ASP page:
RetVal = window.showModalDialog "authtest_2.asp", "", "dialogWidth:300px;status:no;dialogHeight:200px;scroll:no;resizable:no"
the authtest.asp processes a couple of <input>'s and I want to return a value to the calling function in the main ASP page.
RetVal = window.showModalDialog "authtest_2.asp", "", "dialogWidth:300px;status:no;dialogHeight:200px;scroll:no;resizable:no"
the authtest.asp processes a couple of <input>'s and I want to return a value to the calling function in the main ASP page.