H
Harry
Dear All,
i am using asp.net, i have assign a form name to a form, e.g.
<form name='myForm' runat='server'>
<input type='text' name='field' value=''>
</form>
i have a javascript function, i am going to
<script>
document.myForm.field.value = 0
</script>
while i run i, the form name has been changed.
so, document.myForm.field.value has bug............
How to solve this problem, besides using document.all.field.value
thank you
Regards,
scli
i am using asp.net, i have assign a form name to a form, e.g.
<form name='myForm' runat='server'>
<input type='text' name='field' value=''>
</form>
i have a javascript function, i am going to
<script>
document.myForm.field.value = 0
</script>
while i run i, the form name has been changed.
so, document.myForm.field.value has bug............
How to solve this problem, besides using document.all.field.value
thank you
Regards,
scli