|
5精币
最近开始研发收费辅助,可是就在CC的时候出现了毛病,客户端注册正常但管理端总是出现帐号或密码错误,这让我特为难
毕竟没有学过Asp,请问这个网络验证的管理员帐号密码存储在哪里,可以告诉一下吗
毕竟没有学过,我只知道它登录用的文件,该文件代码:
- <!--#include file="../conn.asp"-->
- <!--#include file="../md5.asp"-->
- <!--#include file="../fangsql.asp"-->
- <%
- if jiemi("gdbdl",request("guanliyz")) = True then
- dim zhanghao,mima
- zhanghao=request("u")
- mima=request("p")
- if len(zhanghao)=0 or len(mima)=0 then
- response.write("管理员帐号或管理员密码不能为空")
- response.end
- end if
- if instr(1,zhanghao," ")<>0 then
- response.write("管理员帐号里面不能有空格")
- response.end
- end if
- if instr(1,zhanghao,"'")<>0 or instr(1,zhanghao,"|")<>0 then
- response.write("管理员帐号里面含有非法字符")
- response.end
- end if
- rs.open "select * from glybiao where glyuesr='" & zhanghao & "' and glypass='" & md5(mima) & "'",con,1,1
- if rs.bof and rs.eof then
- rs.close
- response.write("管理员帐号或管理员密码错误!")
- response.end
- else
- session("admindl")="qq8487391"
- session("admin_name")=zhanghao
- session("adminyz")="cdgsfgbsd"
- session.timeout=120
- response.write jiami("hucbjte")
- rs.close
- set rs=nothing
- response.end
- end if
- elseif jiemi("adminout",request("guanliyz")) = True then
- session("admindl")=""
- session("admin_name")=""
- session("adminyz")=""
- response.write "管理员已退出完毕."
- end if
- %>
复制代码
如果懂的帮忙解决一下,必有这些,不止这些小小的5精币报答
补充内容 (2012-2-13 03:07):
7楼是那个CC3.4的数据库文件,但是我用记事本打开出现里面汗~~ |
最佳答案
查看完整内容
用我这个数据库替换掉你那个数据库吧 帐号和密码都是:admin
替换数据库别和我说不会啊!
|