如何更好地保護(hù)我的網(wǎng)頁?
main.htm
<html>
<body>
<form action="login.asp" method="Post">
<input type="text" name="username" size="20"> 賬號(hào)<br>
<input type="password" name="password" size="20"> 密碼<br>
<input type="submit" value="進(jìn)入">
</form>
</body></html>
login.asp
<%@Language=VBScript%>
<%Response.Buffer = True%>
<html>
<body>
<%
UserName = Request.Form("username")
Password = Request.Form("password")
Set MyConn=Server.CreateObject("ADODB.Connection")
MyConn.Open "Provider={Microsoft Access Driver (*.mdb)};
DBQ=D:\suifengqiwu\databases\test.mdb"
SQL = "Select * From tblLogin"
Set RS = MyConn.Execute(SQL)
If UserName = RS("UserName") And Password = RS("Password") Then
Session("allow") = True
< !-----連接保護(hù)的頁面------->
Else
Response.Redirect "main.asp"
RS.Close
MyConn.Close
Set RS = Nothing
Set MyConn = Nothing
End If
%>
</body></html>
做好了上面兩個(gè)程序,再完善一下外圍:把global.asa中的Session_Onstart加上 Session("allow") = False 語句,再在要保護(hù)的網(wǎng)頁中加入下面的語句:
<% @Language=VBScript %>
<% Response.Buffer = True %>
<% If session("allow") = False Then Response.Redirect "main.asp" %>
[1]
相關(guān)文章
如何檢測(cè)用戶第一次訪問我的網(wǎng)站并顯示友好信息?
如何檢測(cè)用戶第一次訪問我的網(wǎng)站并顯示友好信息?...2006-11-11如何用下拉列表顯示數(shù)據(jù)庫里的內(nèi)容?
如何用下拉列表顯示數(shù)據(jù)庫里的內(nèi)容?...2006-11-11如何做一個(gè)計(jì)數(shù)器并讓人家申請(qǐng)使用?
如何做一個(gè)計(jì)數(shù)器并讓人家申請(qǐng)使用?...2006-11-11如何動(dòng)態(tài)添加Form項(xiàng)?
如何動(dòng)態(tài)添加Form項(xiàng)?...2006-11-11何時(shí)將數(shù)據(jù)裝載到Application 或 Session 對(duì)象中去?
何時(shí)將數(shù)據(jù)裝載到Application 或 Session 對(duì)象中去?...2006-11-11