大侠救救我吧,刚学ASP(VBscript),下面代码哪里错了,怎么点击按钮没反应啊!

<html>
<head>
<title>测试</title>
<script>
<!--
Sub button1_OnClick
Dim form1
Set form1=Document.formname
If IsNumeric(form1.text1.Value) Then
If form1.text1.Value>=0 AND form1.text1.Value<=10 Then
MsgBox "谢谢!"
Else
MsgBox "请输入一个1-10之间的数!"
End If
Else
MsgBox "请输入数字"
End If
End Sub
-->
</script>
</head>
<body>
<form name="formname">
输入一个1-10之间的数:
<input type="text" name="text1" width="20px" />
<input type="button" value="检查" name="button1" />
</form>
</body>
</html>

<script>
<!--
Sub button1_OnClick
Dim form1
Set form1=Document.formname
If IsNumeric(form1.text1.Value) Then
If form1.text1.Value>=0 AND form1.text1.Value<=10 Then
MsgBox "谢谢!"
Else
MsgBox "请输入一个1-10之间的数!"
End If
Else
MsgBox "请输入数字"
End If
End Sub
-->
</script>
这里的代码写错了
应该如此写就对了
<html>
<head>
<title>测试</title>
<script>
function checknum(){
var thenum=document.getElementById("text1").value;
if (thenum<=10&&thenum>=0){
alert("谢谢");
}else{
alert("请输入一个1-10之间的数");
return false;
}
}
</script>
</head>
<body>
<form name="formname">
输入一个1-10之间的数:
<input type="text" name="text1" id="text1" width="20px" />
<input type="button" onclick="return checknum();" value="检查" name="button1" />
</form>
</body>
</html>
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-09-09
<html>
<head>
<title>测试</title>
<script>
<!--
Sub button1_OnClick
Dim form1
Set form1=Document.formname
If IsNumeric(form1.text1.Value) Then
If form1.text1.Value>=0 AND form1.text1.Value<=10 Then
MsgBox "谢谢!"
Else
MsgBox "请输入一个1-10之间的数!"
End If
Else
MsgBox "请输入数字"
End If
End Sub
-->
</script>
</head>
<body>
<form name="formname">
输入一个1-10之间的数:
<input type="text" name="text1" width="20px" />
<input type="button" value="检查" name="button1" onclick="button1_OnClick()" />
</form>
</body>
</html>

\\VBSCRIPT的ASP网页中,SUB过程下面的%> <%标记是什么意思?
<%和%>配对使用,内部写vbscript脚本,在服务器端执行。也就是说<%%>间写服务器脚本,之外写html代码或js脚本

ASP问题请教,错误显示代码:"Microsoft VBScript 编译器...
回答:then后面敲个回车试试

Microsoft VBScript 编译器错误 错误 '800a0400' 救救我
A.你一定是将文件夹移动了,存放数据的数据库文件移动了地方,使得电脑无法向数据库读写数据了。将数据库文件恢复原状即可。B.也可能你在无意中修改了该页的源代码,当然也可能是遭到攻击,被别人修改的。如果有备份,只需将这一页的ASP文件上传到服务器上,以同名覆盖就可以了。

...过低我要怎么下载啊?捣鼓了半天也没有弄好,哪位大侠救救我吧 Q...
方案一:安装或升级flash打开【电脑管家】→点击【软件管理】,在搜索框中输入"flash"→找到相应版本点击【安装】或【升级】(如果以安装请点击下箭头后选择修复,如此步骤无法成功修复,可继续执行第二步骤再进行此步骤)2. 打开文件夹C:\\Windows\\System32\\Macromed\\Flash 将名为"Flash32_版本号.ocx" ...

相似回答
大家正在搜