(我想在以下的代码中插入验证输入的候选人(!名字不能为空,不能重名!因为建立的数据库里以有信息,)
<!--#include file="MyFunctions.asp"-->
<%
if request("action")="add" then
conn.execute ("insert into DVote (Name,Info) values ('"&request("Name")&"','"&request("Info")&"')") '---将"推荐候选人"加入到库里
Response.Redirect "index.asp" ' -----自动转到<<投票首页>>
else
%>
<html>
<head>
<title>推荐候选人</title>
</head>
<body background="Bg1.jpg">
<p align="center"><img src="fig.jpg" width="690" height="230"></p>
<form action="recommend.asp?action=add" method="post">
<table width="70%" align="center" border="2">
<tr bgcolor="#00CCFF">
<td align="right">候选人姓名:</TD>
<td><input type="text" name="Name" size="10"></td>
</tr>
<tr>
<td bgcolor="#CCCCCC" align="right">候选人简介:</td>
<td bgcolor="#CCCCCC">
<textarea name="Info" cols="40" rows="3"></textarea></td>
</tr>
</table><br>
<Div align="center">
<input type="submit" value="确定">
<input type="hidden" name="Decsion" value="True">
<input type="reset" value="重新输入">
</Div>
</form>
<p align="center"><a href="vbscript:history.back">返回首页</a></p>
</body>
</html>
<% End If %>