在ASP應用中驗證使用者身份(4)

來源:互聯網
上載者:User
在ASP應用中驗證使用者身份(4)

作者:仙人掌工作室


四、在安全頁面中檢查是否已經驗證使用者身份

   每一個受保護的頁面都應該檢查使用者身份是否已經驗證。這是因為使用者有可能為
這些頁面做了書籤,如果不在這些頁面中驗證使用者已經登入,就不能保證瀏覽頁面的
是經過授權的合法使用者。

   為檢查是否已經驗證使用者身份,可以測試在signUserOn中建立的Session
("User")是否是一個對象、類型是否正確等。如果上述測試失敗,則重新導向瀏覽器到
登入頁面signOn.asp。對於不支援Cookies的瀏覽器,檢查使用者是否經過身分識別驗證的
方法略為複雜,它需要通過在Application("Users")中搜尋ID獲得目前使用者記錄。
如下面的代碼在signedOn頁面中完成上述檢驗:
< %@ Language=VBScript %>
< % option explicit %>
< % Response.Buffer = true %>
< % Response.Expires = 0 %>

< !-- #INCLUDE FILE="ASPSecurity.inc" -->
< HTML>
< BODY>
< %
dim ID
dim aUser
dim AppUsers
dim authenticated
dim I
if Session("SupportsCookies") then
if not isUser(Session("User")) then
Response.Redirect "signon.asp"
else
set aUser = Session("User")
end if
else
authenticated = false
ID = Request("ID")
if len(ID) > 0 then
AppUsers = Application("Users")
for each aUser in AppUsers
if aUser("SessionID") = ID then
authenticated=true
aUser("LastActivity") = now()
Application.Lock
Application("Users") = AppUsers
Application.UnLock
exit for
end if
next
end if
if not authenticated then
Response.Redirect "signon.asp"
end if
end if
%>


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.