Hi! I have the following code on one form -
<script type="text/Javascript">
window.opener.document.getElementById('OrderFile1').value = document.frmSend.attach1.value;
</script>
The result is that the OrderFile1 value stays blank and there is no value in it.
The value i am trying to pass is a type"file" asp text box.
(<input name="attach1" type="file" size=50>)
Is this a problem?.
The user selects and uploads a file from their computer and i take that value and pass it to the form on another page.
Do i have to reload the parent web page? I really don't want to becasue then I lose all of the other data on t he form.
THANKS!
<script type="text/Javascript">
window.opener.document.getElementById('OrderFile1').value = document.frmSend.attach1.value;
</script>
The result is that the OrderFile1 value stays blank and there is no value in it.
The value i am trying to pass is a type"file" asp text box.
(<input name="attach1" type="file" size=50>)
Is this a problem?.
The user selects and uploads a file from their computer and i take that value and pass it to the form on another page.
Do i have to reload the parent web page? I really don't want to becasue then I lose all of the other data on t he form.
THANKS!