morrigan3399
Programmer
I have a form called "boxform" in my asp page, and I can access it from the JavaScript code:
ckstartday = document.boxform.startday.value
but when I try to access it from my VBScript code:
document.boxform.minlat.value = 10
I get the following error message:
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'document'
Can anyone tell me why my page does not recognize "document"? How can I set form values from vbscript?
Thanks.
ckstartday = document.boxform.startday.value
but when I try to access it from my VBScript code:
document.boxform.minlat.value = 10
I get the following error message:
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'document'
Can anyone tell me why my page does not recognize "document"? How can I set form values from vbscript?
Thanks.