| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 747 人关注过本帖
标题:[求助]请解释一下这些ASP代码~~~
只看楼主 加入收藏
kingcat_1985
Rank: 1
等 级:新手上路
帖 子:207
专家分:0
注 册:2004-11-7
收藏
 问题点数:0 回复次数:2 
[求助]请解释一下这些ASP代码~~~

初接触ASP~~~很痛苦~~~又没有教程~~~有谁可以帮忙解释一下下面的~~~代码~~~~

<%response.buffer = true%> <!--#INCLUDE FILE="inc/db_inc.asp"--> <!--#INCLUDE FILE="inc/md5_inc.asp"--> <!--#INCLUDE FILE="inc/char_inc.asp"--> <!--#INCLUDE FILE="header.asp"--> <% dim ip, strip, killip dim StrSql, toptext, rs, rs2, StrHtml, error

StrHtml = loadtemplate("htmltop") StrHtml = Replace(StrHtml, "{pagetitle}", loadtemplate("logintitle")) StrHtml = Replace(StrHtml, "{style_path}", loadtemplate("path")) StrHtml = Replace(StrHtml, "{forumtitle}", boardtitle) response.write StrHtml StrHtml = loadtemplate("pagetitle") if request.cookies("sf")("username") = "" then toptext = loadtemplate("toptextguest") else toptext = loadtemplate("toptextuser") end if toptext = toptext & loadtemplate("toptext") StrHtml = Replace(StrHtml, "{top_text}", toptext) StrHtml = Replace(StrHtml, "{username}", request.cookies("sf")("username")) response.write StrHtml

' 论坛关闭 StrSql = "select * from sf_setup" Set rs2 = Conn.Execute(StrSql) if rs2("forumclose") = 1 then StrHtml = loadtemplate("error") StrHtml = Replace(StrHtml, "{error_text}", rs2("forumclosehint")) response.write StrHtml response.end end if

' 禁止IP访问 if rs2("killip") = 1 then userip = cstr(request.ServerVariables("REMOTE_ADDR")) killiplist = rs2("killiplist") if killiplist <> "" and userip <> "" then killip = split(killiplist, "|") struserip = split(userip, ".") i = 0 do until i > ubound(killip) strkillip = split(killip(i), ".") bolkill = true if (struserip(0) <> strkillip(0)) and (strkillip(0) <> "*") then bolkill = false if (struserip(1) <> strkillip(1)) and (strkillip(1) <> "*") then bolkill = false if (struserip(2) <> strkillip(2)) and (strkillip(2) <> "*") then bolkill = false if (struserip(3) <> strkillip(3)) and (strkillip(3) <> "*") then bolkill = false if bolkill then StrHtml = loadtemplate("error") StrHtml = Replace(StrHtml, "{error_text}", rs2("killiphint")) response.write StrHtml Response.End end if i = i + 1 loop end if end if

StrHtml = loadtemplate("pagepath") StrHtml = Replace(StrHtml, "{path_text}", "<a href=""index.asp"">" & boardtitle & "</a> &raquo; " & loadtemplate("logintitle")) response.write StrHtml

step = ChkSql(request("step")) select case step case "2" error = "" if request("username") = "" then error = error & "<br><li>" & loadtemplate("err_username") if request("password") = "" or len(request("password")) < 3 then error = error & "<br><li>" & loadtemplate("err_chkpassword") if error <> "" then StrHtml = loadtemplate("error") StrHtml = Replace(StrHtml, "{error_text}", error) response.write StrHtml response.end end if StrSql = "select userid, username, password from sf_user where username = '" & ChkSql(request("username")) & "'" Set rs2 = Conn.Execute(StrSql) if not (rs2.bof or rs2.eof) then if md5(request("password")) = rs2("password") then response.cookies("sf")("username")= ChkSql(rs2("username")) response.cookies("sf")("password")= md5(request("password")) response.cookies("sf")("userid")= rs2("userid") cookietime = ChkSql(request("cookietime")) if IsNumeric(cookietime) then cookietime = clng(cookietime) else cookietime = 0 end if if cookietime = 0 then 'response.cookies("sf").expires = 0 else response.cookies("sf").expires = dateadd("d", cookietime, date()) end if StrSql = "update sf_user set lastvisit = '" & now() & "', lastactivity = '" & now() & "' where username = '" & ChkSql(rs2("username")) & "'" Set rs2 = Conn.Execute(StrSql) StrHtml = loadtemplate("hint") StrHtml = Replace(StrHtml, "{hint_text}", loadtemplate("hint_logined")) StrHtml = Replace(StrHtml, "{pro_name}", request("reurl")) response.write StrHtml else StrHtml = loadtemplate("error") StrHtml = Replace(StrHtml, "{error_text}", loadtemplate("err_chkpassword")) response.write StrHtml end if else StrHtml = loadtemplate("error") StrHtml = Replace(StrHtml, "{error_text}", loadtemplate("err_chkpassword")) response.write StrHtml end if case else StrHtml = loadtemplate("login") if (request.ServerVariables("HTTP_REFERER") = "") or (instr(lcase(request.ServerVariables("HTTP_REFERER")), "login.asp") > 0) then StrHtml = Replace(StrHtml, "{reurl}", "index.asp") else StrHtml = Replace(StrHtml, "{reurl}", server.htmlencode(request.ServerVariables("HTTP_REFERER"))) end if response.write StrHtml response.write sfcopyright end select

response.write loadtemplate("htmlbottom") response.end Conn.Close Set Conn = nothing Set rs = nothing Set rs2 = nothing set ip = nothing set strip = nothing set killip = nothing %>

搜索更多相关主题的帖子: ASP 代码 解释 
2005-02-07 14:55
tang688
Rank: 5Rank: 5
等 级:贵宾
威 望:16
帖 子:1219
专家分:35
注 册:2004-12-25
收藏
得分:0 
是说书呢?还是上课呢?
你这叫提问吗?
要不你回答一下哥得巴赫猜想算了。用10+10的方法也行。不一定要1+1的。

[此贴子已经被作者于2005-2-7 16:47:48编辑过]



2005-02-07 16:46
kingcat_1985
Rank: 1
等 级:新手上路
帖 子:207
专家分:0
注 册:2004-11-7
收藏
得分:0 
对不起~~~

我是菜鸟~~~   各位大哥要照住小弟我啊~~~
2005-02-07 22:59
快速回复:[求助]请解释一下这些ASP代码~~~
数据加载中...
 
   



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

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