ASP 作业

来源:百度知道 编辑:UC知道 时间:2024/06/17 00:35:33
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>判断分数优良</title>
</head>

<body>
请输入学生分数:

<form id="form1" name="form1" method="post" action="">
<label>
<input name="fenshu" type="text" size="3" />
</label>
<p>
<label>
<input type=

最好用if结构
select case a
case is>100 or is<0
response.write"数据输入有错!"
case is>=90
response.write"优"
case is>=80
response.write"良"
case is>=70
response.write"中等"
case is>=60
response.write"及格"
case else
response.write"不及格"
end select

啥东东啊?