如何對使用者進行授權?

來源:互聯網
上載者:User

authenticate.asp
<%
Dim URL
URL = Request.QueryString

' 獲得URL.
%>

<html>
<body>
<FORM METHOD=POST ACTION="/validate.asp">
  <INPUT TYPE=HIDDEN NAME="URL" VALUE="<%=URL%>">
 ' 將URL儲存到一個隱藏變數中.
  使用者名稱:
  <INPUT TYPE=TEXT NAME="txtName">
 口令:
  <INPUT TYPE=PASSWORD NAME="txtPassword">

  <INPUT TYPE=SUBMIT>
</FORM>
</body></html>
    再用validate.asp檔案擷取傳遞給它的資訊,從資料庫中讀取使用者名稱和口令,以判斷是否給使用者授權。

validate.asp
<%
Dim strUserName, strPassword
strUserName = Request.form("txtName")
strPassword = Request.form("txtPassword")
' 從表單中讀取使用者名稱和口令.


' 建立資料庫連接...

Dim strSQL
strSQL = "select * from ValidUsers WHERE UserName = " & _
    strUserName & " AND Password = " & _
    strPassword

' 進行SQL查詢.

Dim rs
Set rs = Conn.Execute(strSQL)

If rs.EOF Then

' 如果recordset不為空白, 則使用者名稱有效.
Session("bolAuthenticated") = True

' 將bolAuthenticated 設為True.

    Response.Redirect Request.form("URL")

   ' 將使用者傳遞到來過的URL.
Else
    Response.Redirect "/notvalidated.asp 

  ' 否則使用者無權訪問,將使用者傳遞到一個錯誤提示頁面.
End If
%>

[1]

相關文章

聯繫我們

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