I have the following code that will set the value on the form to another web page text box that is open.
<!--ASSIGN UPLOAD VALUE TO THE PARENT FORM-->
<script type="text/Javascript">
VAR lvvar = ????????????????????????????????;
window.opener.document.getElementById('OrderFile1').value = 'lvvar';
</script>
The variable on the form that I need to get the value is called - attach1
The form is called - frmSend
Hod do I pass the value from the form to the lvvar variable. This isn't a function so i can't add it to the header. This code should run and not be called.
THANKS!
<!--ASSIGN UPLOAD VALUE TO THE PARENT FORM-->
<script type="text/Javascript">
VAR lvvar = ????????????????????????????????;
window.opener.document.getElementById('OrderFile1').value = 'lvvar';
</script>
The variable on the form that I need to get the value is called - attach1
The form is called - frmSend
Hod do I pass the value from the form to the lvvar variable. This isn't a function so i can't add it to the header. This code should run and not be called.
THANKS!