标题:为什么我的数据库和asp程序连不上?
只看楼主
yangrui0307
Rank: 1
等 级:新手上路
帖 子:78
专家分:0
注 册:2005-12-5
 问题点数:0 回复次数:0 
为什么我的数据库和asp程序连不上?
用的sql的数据库,
conn.asp
<%
dim conn
dim connstr,db
db="database_data.mdf"
on error resume next
set conn=server.createobject("ADODB.connection")
connstr= "PROVIDER=SQLOLEDB;DATA SOURCE=a20;UID=sa;PWD=password;DATABASE=db"
if err then
err.clear
else
conn.open connstr
end if
%>


index.asp里是这样调用的
<form name="Login" action="ChkLogin.asp" method="post" >


chklogin.asp
<!--#include file="conn.asp"-->
<%
dim rs,sql
dim username,userpassword
username=request.Form("username")
userpassword=request.Form("userpassword")
set rs=server.CreateObject(adodb.recordset)
sql="select username,userpassword from user where username='"&username&"' and userpassword='"&userpassword&"'"
rs.open sql,conn,1.3
if username="" then
response.write "<script language=javascript>alert('用户名不能为空!');history.back();</script >"
end if
if userpassword="" then
response.write "<script language=javascript>alert('用户密码不能为空!');history.back();</script >"
end if
if rs.bof and rs.eof then
response.write "<script language=javascript> alert('您输入的用户名或密码不存在!');history.back();</script >"
else
session.Timeout=60
session("username")=username
response.Redirect"admin.asp"
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>

到底错在哪里了???请大侠们指教~~~~~~~
搜索更多相关主题的帖子: 数据库 asp 
2006-04-18 13:03



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-58284-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.548829 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved