V
vikesfan
I have the following code in my page:
function formSubmit(next){
document.forms[0].button.value = next;
document.forms[0].userAgent.value = navigator.userAgent;
document.forms[0].submit();
}
When I hit the submit button which runs this code none of the form
fields are populated. when I try to pull them out in my Java code they
are empty. Any idaes? Thanks.
function formSubmit(next){
document.forms[0].button.value = next;
document.forms[0].userAgent.value = navigator.userAgent;
document.forms[0].submit();
}
When I hit the submit button which runs this code none of the form
fields are populated. when I try to pull them out in my Java code they
are empty. Any idaes? Thanks.