ASP编程高手帮写个小程序
在数据库abc.mdb中有50个姓名,在ASP网页的INPUT文本框中,如果输入的姓名是abc.mdb中的,则单击[提交]按钮时提示“输入正确”,否则提示“输入错误”。...
在数据库abc.mdb中有50个姓名,在ASP网页的INPUT文本框中,如果输入的姓名是abc.mdb中的,则单击[提交]按钮时提示“输入正确”,否则提示“输入错误”。
展开
展开全部
首先你在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>
<!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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询