<!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>
<script language="VBScript">
sub check()
flag=false
for i=0 to 4
if frm1.os.iten(i).checked then
flag=true
end if
next
if flag=false then
msgbox"请你选择一个项目!"
exit sub
end if
frm1.submit
end sub
</script>
<body bgcolor="#F2EADD" text="#005E5E">
<table width="75%" border="1" align="center" cellpadding="0" cellspacing="0"bordercolorlight="#cccc33"
bordercolorrdark=#999999">
<tr>
<td>
<font align="center" face="楷体_GB2312" size="+3"> 意见调查表</font> </td>
</tr>
<tr>
<td height="247">
<form method="post" name="frm1" action="submit.asp">
<br>
<p><font size="+1">请选择你现在最想用的操作系统:</font></p>
<p>
<input type="radio" name="os" value="0">
<b><font size="+1">unix</font></b> </p>
<p>
<input type="radio" name="os" value="1">
<b><font size="+1">linux</font></b> </p>
<p>
<input type="radio" name="os" value="2">
<b><font size="+1">win98</font></b> </p>
<p>
<input type="radio" name="os" value="3">
<b><font size="+1">win2000</font></b> </p>
<p>
<input type="radio" name="os" value="4">
<b><font size="+1">其他的操作系统</font></b> </p>
<hr align="center" size="3">
<p>
<input type="button" name="提交" value="我要投票!" onclick=check()>c
</p>
<p>
<a href="result.asp">查看投票结果</a>
<p>
</form></td>
</tr>
</table>
</body>
</html>