整合動網使用者登陸 http://www.hotrich.com/blog/article.asp?id=20

來源:互聯網
上載者:User
1、實現動網cookies全網通用,登陸、退出也是全網通用。(前提是論壇處於網站的 bbs/ 目錄下,相關內容自己根據實際來調整,若 www.aaa.com 這樣要取 bbs.aaa.com  的cookies需要判斷一下取的路徑與名稱)

修改三個檔案:
①開啟inc/Dv_ClsMain.asp
尋找 Response.Cookies(Forum_sn).path=cookiepath
應該共有1個
替換為:
Response.Cookies(Forum_sn).path="/"

② 開啟login.asp
尋找 Response.Cookies(Dvbbs.Forum_sn).path=Dvbbs.cookiepath
應該共有3個,其中一個是:Response.Cookies(Dvbbs.Forum_sn).path = Dvbbs.cookiepath(等號兩旁有空格)
替換為:
Response.Cookies(Dvbbs.Forum_sn).path="/"

③ 開啟logout.asp
尋找 Response.Cookies(Dvbbs.Forum_sn).path=Dvbbs.cookiepath 第26行
應該只有一個
替換為:
Response.Cookies(Dvbbs.Forum_sn).path="/"

於是在任意目錄中構建頁面讀取皆為可能

讀取代碼:
<!--#include file="bbs/Conn.asp"-->
<!--#include file="bbs/inc/const.asp"-->
<%
response.Write request.Cookies(Dvbbs.Forum_sn)("StatUserID")&"<br>"
response.Write request.Cookies(Dvbbs.Forum_sn)("usercookies")&"<br>"
response.Write request.Cookies(Dvbbs.Forum_sn)("username")&"<br>"
response.Write request.Cookies(Dvbbs.Forum_sn)("password")&"<br>"
response.Write request.Cookies(Dvbbs.Forum_sn)("userclass")&"<br>"
response.Write request.Cookies(Dvbbs.Forum_sn)("userid")&"<br>"
response.Write request.Cookies(Dvbbs.Forum_sn)("userhidden")&"<br>"
%> 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.