ASP编程高手帮写个小程序

在数据库abc.mdb中有50个姓名,在ASP网页的INPUT文本框中,如果输入的姓名是abc.mdb中的,则单击[提交]按钮时提示“输入正确”,否则提示“输入错误”。... 在数据库abc.mdb中有50个姓名,在ASP网页的INPUT文本框中,如果输入的姓名是abc.mdb中的,则单击[提交]按钮时提示“输入正确”,否则提示“输入错误”。 展开
 我来答
eadio
2014-06-05 · TA获得超过1610个赞
知道小有建树答主
回答量:962
采纳率:80%
帮助的人:1019万
展开全部
首先你在abc.mdb里面要建立一个表如name的表,里面最少有id【自动编号】、username【姓名】。。才能进行下一步操作,具体代码如下:
<!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>

<%
'连接OLEDB
Set oConn = Server.CreateObject("ADODB.CONNECTION")
oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.mappath("data/abc.mdb")

action = request("action") '判断提交动作,
if action = "tj" then
username = request("username") '检索提交过来的名称
set rrs = server.CreateObject("adodb.recordset")
strSQL = "select name from [name] where name = '" & username & "'"
rrs.open strSQL ,conn ,1 ,1
if not rrs.eof then
response.Write("输入正确" & username)
else
response.Write("输入错误")
response.End()
end if
rrs.close
set rrs = nothing
end if

%>

<form method="post" action="?action=tj">

<input type="text" value="" name="username">

<input type="submit" value="修改" />
</form>

</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式