小代码求助
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<h3>累加计算</h3>
<hr>
<input type="button" name="button1" value="计算">
<script for="button1" event="onclick" language="vbscript">
s=0;n=1
do until n<=100
s=s+n;
n=n+1;
loop
response.write "100+99"&s
</script>
</body>
</html>
这代码有什么问题??
为什么输出不了??