原帖由 大漠孤狼 于 2008-6-28 05:05 PM 发表 
加上之后显示什么错误?
加上之后显示超时,错误信息500。
DNS链接已经弄好了。但是不晓得具体怎么用。
conn.asp的设定是:
<%
'option explicit
'dim startime,endtime,conn,connstr,db
on error resume next
startime=timer()
Set conn = Server.CreateObject("ADODB.Connection")
connstr="Driver={SQL Server};Server=IP地址;Database=school;Uid=用户名 wd=密码;"
conn.Open connstr
function CloseDatabase
Conn.close
Set conn = Nothing
End Function
Function userlogin() '检测用户是否登录
Dim UserName
UserName=request.cookies("name")
If UserName<>"" Then
'sql="select top 1 clubuser_name,clubuser_password,bbsmanager from clubuser Where clubuser_name='"&UserName&"'"
sql="select top 1 username,password,bbsmanager from [user] Where username='"&UserName&"'"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,1
if rs.bof and rs.eof then
userlogin="N"
else
'If trim(rs("clubuser_password"))=trim(request.Cookies("clubuser_password")) Then
if trim(rs("password"))=trim(request.Cookies("clubuser_password")) then
userlogin="Y"
Else
userlogin="N"
End If
end IF
Response.Cookies("bz")=rs("bbsmanager")
rs.close
set rs=nothing
else
userlogin="N"
end if
End Function
%>
bottom.asp这个页面的字符编码:
<!--#include file="conn.asp"-->
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
font-size: 12px;
}
-->
</style>
<table width="770" height="7" border="0" align="center" cellpadding="0" cellspacing="0" style="margin-top:3px;">
<tr>
<td width="771" height="7"><img src="imege/xian12.jpg" width="770" height="8"></td>
</tr>
</table>
<table width="770" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="30">
<div align="center"><font color="#666666">
<%
set rs=Server.CreateObject("adodb.recordset")
sql="select * from bottom order by id"
rs.open sql,conn,1,1
if not rs.eof then
do while not rs.eof
%>
<a href="mob1.asp?id=<%=rs("id")%>" target="_blank"><%=rs("bot_name")%></a> |
<%
rs.movenext
loop
else
%>
校友录简介 | About |
广告服务 | 招聘信息 | 招纳英才 | 会员注册 | 联系方式
<%
rs.close
set rs=nothing
end if
%>
</font></div></td>
</tr>
<tr>
<td height="30"><div align="center"><font color="#666666">Copyright ? 1999
- 2008 Corporation, All Rights Reserved</font></div></td>
</tr>
<tr>
<td height="30"><div align="center"><font color="#666666">公司 版权所有</font></div></td>
</tr>
</table>
[ 本帖最后由 lang 于 2008-6-28 08:28 PM 编辑 ] |