急!求表单提交问题!
建立一个表单,单击提交按钮时,判断用户输入的正确性,比如年龄为数值型,如果输入正确,现实“您的简历已提交”,否则显示出错提示。表单代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>建立表单</title>
<style type="text/css">
<!--
body{font-size:14px}
-->
</style>
</head>
<body topmargin="0">
<form name="form1" method="post" action="review.asp" enctype="multipart/form-data">
<table width="550" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#3399FF">
<tr align="center" valign="middle" bgcolor="#FFFFFF">
<td height="30" colspan="4" bgcolor="#B7DAF9">个人简历</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="16%" height="30">真实姓名:</td>
<td height="30" colspan="3"><input name="name" type="text" id="name" maxlength="50"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30">年龄:</td>
<td width="36%" height="30"><input name="age" type="text" id="age" size="10" maxlength="10"></td>
<td width="9%" height="30">性别: </td>
<td width="39%" height="30">
<input name="sex" type="radio" value="0" checked>男
<input type="radio" name="sex" value="1">女
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30">毕业院校:</td>
<td height="30" colspan="3"><input name="school" type="text" id="school" maxlength="50"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30">所学专业:</td>
<td height="30" colspan="3"><select name="spe" id="spe">
<option value="0">选择专业</option>
<option value="1">计算机应用</option>
<option value="2">土木工程</option>
<option value="3">软件工程师</option>
<option value="4">注册会计师</option>
</select></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30">联系方式:</td>
<td height="30" colspan="3"><input name="tel" type="text" id="tel"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30">照片上传:</td>
<td height="30" colspan="3"><input name="pic" type="file" id="pic"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30">爱 好:</td>
<td height="30" colspan="3">
<input name="favorite" type="checkbox" id="favorite" value="0"> 计算机
<input name="favorite" type="checkbox" id="favorite" value="1">英语
<input name="favorite" type="checkbox" id="favorite" value="2">体育
<input name="favorite" type="checkbox" id="favorite" value="3">旅游
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30">工作简历:</td>
<td height="30" colspan="3"><textarea name="summery" cols="60" rows="8" id="summery"></textarea></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="30"> </td>
<td height="30" colspan="3" align="center"><input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置"></td>
</tr>
</table>
</form>
</body>
</html>
提交后显示HTTP500内部服务器出错,链接的review.asp该怎么编写呢?