asp_databases thread: Passing multiple values to a field of a form from a search page **Very Difficult Problme**)
Hi,
I am trying to send customerId and CustomerName fields from a search page
to an Entry Form. CustomerID works but name is nor woorking..
Here is the scenerio:
I have an entry form where user enters a customer name using a search
page. They select a radion button and this is what happens:
function process(){
var a=0;
while(!document.all.select[a].checked) a++; // selecting, which
opener.document.all("CustomerID").value=document.thisForm.select
[a].value;
window.close();
}
</script>
Now how can I show the selected customerName the user when they go back to
the entryForm. I can't user two values for one radion button can I? Is
there any other solution, please help me if you can?
Thanks,
Moon