mrbunny666
02-16-2004, 12:17 PM
Basically, the Survey has a form entry called: Pin #
Person enters a #: 112233
upon SUBMIT, redirect would open the new page of:
www.yourwebsite.com/ [Pin # data] .htm
Heres how it works in Java:
function OpenSpecialWindow {
window.open('http://www.yourwebsite.com/' + frmSurvey.txtPIN.value,'frmNewWindow','width=550,height=600,resizable')
}
OnSubmit="OpenSpecialWindow();"
how do I do this in css in a formmail.pl script?
Person enters a #: 112233
upon SUBMIT, redirect would open the new page of:
www.yourwebsite.com/ [Pin # data] .htm
Heres how it works in Java:
function OpenSpecialWindow {
window.open('http://www.yourwebsite.com/' + frmSurvey.txtPIN.value,'frmNewWindow','width=550,height=600,resizable')
}
OnSubmit="OpenSpecialWindow();"
how do I do this in css in a formmail.pl script?