用asp连接数据库时,总是提示参数类型不正确,或不在可以接受的范围之内,怎么回事啊??
提示在login.asp的第八行login.asp的代码如下<!--#includefile="conn.asp"--><%name=request.form("name...
提示在login.asp的第八行
login.asp的代码如下
<! -- #include file="conn.asp" -->
<%
name=request.form("name")
pass=request.form("pass")
if name<>""then
sql="select * from admin where 账号='"&name&"'"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
if not rs.eof then
if pass=rs("密码")then
session("admin")=name
response.redirect"index.asp"
end if
end if
end if
%>
<html>
<head>
<style type="text/css">
<! --
td { font-size:14px;line-height:17px}
body {
font-size:14px;
line-height:17px;
background-image: url(4.jpg);
}
p{margin-top:1;margin-bottom:1}
a:link{text-decoration:none;color:black}
a:visited{text-decoration:none;color:black}
a:active{text-decoration:none}
a:hover{text-decoration:underline;color:red}
-- >
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>登录后台</title>
</head>
<body>
<center>
<table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
<form action="" method="post">
<br>
<tr>
<td width="38%"><p align="right">账号:</td>
<td width="62%"><input type="text" name="name" size="20" value="01"></td>
</tr>
<tr>
<td width="38%"><p align="right">密码:</td>
<td width="62%"><input type="password" name="pass" size="20" value="01"></td>
</tr>
<tr>
<td width="100%" colspan="2">
<p align="center"><input type="submit" value="进入" name="enter">
<input type="reset" value="取消"name ="reset"></p></td></tr>
</table>
</form>
</table>
</center>
</body>
</html>
conn.asp的代码如下
<%
dim db,conn,connstr
db="guestdata.mdb"
Set conn=Server.CreateObject("ADODB.Connection")
connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("guestdata.mdb")
conn.open connstr
%> 展开
login.asp的代码如下
<! -- #include file="conn.asp" -->
<%
name=request.form("name")
pass=request.form("pass")
if name<>""then
sql="select * from admin where 账号='"&name&"'"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
if not rs.eof then
if pass=rs("密码")then
session("admin")=name
response.redirect"index.asp"
end if
end if
end if
%>
<html>
<head>
<style type="text/css">
<! --
td { font-size:14px;line-height:17px}
body {
font-size:14px;
line-height:17px;
background-image: url(4.jpg);
}
p{margin-top:1;margin-bottom:1}
a:link{text-decoration:none;color:black}
a:visited{text-decoration:none;color:black}
a:active{text-decoration:none}
a:hover{text-decoration:underline;color:red}
-- >
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>登录后台</title>
</head>
<body>
<center>
<table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
<form action="" method="post">
<br>
<tr>
<td width="38%"><p align="right">账号:</td>
<td width="62%"><input type="text" name="name" size="20" value="01"></td>
</tr>
<tr>
<td width="38%"><p align="right">密码:</td>
<td width="62%"><input type="password" name="pass" size="20" value="01"></td>
</tr>
<tr>
<td width="100%" colspan="2">
<p align="center"><input type="submit" value="进入" name="enter">
<input type="reset" value="取消"name ="reset"></p></td></tr>
</table>
</form>
</table>
</center>
</body>
</html>
conn.asp的代码如下
<%
dim db,conn,connstr
db="guestdata.mdb"
Set conn=Server.CreateObject("ADODB.Connection")
connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("guestdata.mdb")
conn.open connstr
%> 展开
1个回答
展开全部
问题出在第一行
<! -- #include file="conn.asp" -->
把多余的空格删掉,否则就真成注释了
<!--#include file="conn.asp"-->
这样包含指令才能生效.conn对象才会被创建
<! -- #include file="conn.asp" -->
把多余的空格删掉,否则就真成注释了
<!--#include file="conn.asp"-->
这样包含指令才能生效.conn对象才会被创建
追问
好的我试一试,还想问一下,设计运行asp的软件叫什么??在哪可以下到免费的?我换了机子没那个软件了
追答
设计软件有很多, Dreamweaver应该是比较常用的一种吧, 各种文本编辑器其实也都可以, 记事本, Notepad++.
运行的最常见的就是IIS了, 其它还有些像小旋风之类的, 没用过, 听说也能跑ASP.
百度吧, 这些都很容易找到.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询