请问asp中键盘键入的事件是什麽?
请问asp中键盘键入的事件是什麽?
onkey?
请问如下情况如何解决:
<Input type = "text" name="Text1" Size = "20">
sub button_Onclick
Document.Form1.Text1.Value = 0
End sub
以上执行正确(没有限制条件)
<!--webbot bot="Validation"
B-Value-Required="TRUE" I-Maximum-Length="5" --> '增加限制条件
<input type="text" name="PeopleNumText" size="20" >
我需要限制text1的输入值为数字,长度为5,但每次设置后,系统会提示“对象不支持该属性或方法 Document.Form1”
请问如何解决?