Asp技巧和實用方法分享
本文向大家分享到的是關(guān)于一些Asp技巧和實用解決方法,ASP初學(xué)者們可以學(xué)習(xí)一下。
隨機(jī)數(shù):
<%randomize%>
<%=(int(rnd()*n)+1)%>
查詢數(shù)據(jù)時得到的記錄關(guān)鍵字用紅色顯示:
<% =replace(RS("字段X"),searchname,"<font color=#FF0000>" & searchname & "</font>") %>
通過asp的手段來檢查來訪者是否用了代理
<% if Request.ServerVariables("HTTP_X_FORWARDED_FOR")<>"" then
response.write "<font color=#FF0000>您通過了代理服務(wù)器,"& _
"真實的IP為"&Request.ServerVariables("HTTP_X_FORWARDED_FOR")
end if
%>
判斷上一頁的來源
request.servervariables("HTTP_REFERER")
java script: document.referrer
清除緩存,重新加載頁面
<%response.expires = 0
response.expiresabsolute = now() - 1
response.addHeader "pragma","no-cache"
response.addHeader "cache-control","private"
Response.cachecontrol = "no-cache"
%>
在下拉菜單中顯示年和月
<select name="select">
<%
Dim M_Year
Dim M_Month
Dim M_MonthJ
Dim M_TheMonth
Dim M_YM
For M_Year = 2000 To Year(Date)
M_Month = 12
If M_Year = Year(Date) Then
M_Month = Month(Date)
End If
For M_MonthJ=1 To M_Month
If M_MonthJ < 10 Then
M_TheMonth = "0" & M_MonthJ
Else
M_TheMonth = M_MonthJ
End If
M_YM = M_Year& "-" & M_TheMonth %>
<option value="<%= M_YM %>"><%= M_YM %></option>
<%
Next
Next %>
</select>
檢索并刪除數(shù)據(jù)庫里的重復(fù)記錄
conn.execute("delete from table where id not in (select distinct from table)")
在做一個在線交流的網(wǎng)站時,有個問題很令我頭疼,就是關(guān)于實時統(tǒng)計在線用戶的問題,客戶要求:統(tǒng)計當(dāng)前在線人數(shù)、游客人數(shù)、會員人數(shù)、在線用戶列表,包括游客、會員和管理員(如果是游客,則自動生成游客的ID,如果是會員,則顯示會員姓名)。因為它要求有實時性,則首先我將用global.asa解決的想法pass掉。
問題的關(guān)鍵是如何判斷用戶已經(jīng)離開,和當(dāng)用戶離開時如何執(zhí)行一個文件或一個函數(shù)。
經(jīng)過和網(wǎng)上一些朋友的探討,終于解決了這個問題。
解決的原理為:編寫一個通用頁面,所謂的通用頁面,就是應(yīng)用里的每個頁面都包含這個頁面,例如:header.ASP,在這個頁面里,用XMLHTTP寫一段代碼,這段代碼的作用是每隔10秒或20秒就向服務(wù)器發(fā)送一個請求,目的是更新當(dāng)前用戶的在線時間并刪除在線時間超過一定時間的用戶,使數(shù)據(jù)庫中的在線用戶記錄保持一定的實時性。
主要實現(xiàn)方法為:
新建一數(shù)據(jù)庫,字段名稱分別為:id(字符),name(字符),user(數(shù)字)tt(日期),admin(權(quán)限代碼,0-普通用戶,1-管理員)
表名:online
header.asp ↓
============================================================
<%
... ...
if session("s_in")<>1 and session("s_name")="" then ’如果用戶是第一次登陸
rs.open "select * from online",conn,3,3
rs.addnew
rs("id")=session.sessionID
rs("name")="游客" & session.sessionID
rs("user")=0 ’0表示用戶未登陸,是游客身份
rs("tt")=now
rs.update
rs.close
session("s_in")=1 ’設(shè)置用戶的資料已經(jīng)存入數(shù)據(jù)庫,表示已經(jīng)在線
end if
if session("s_name")<>"" then ’如果用戶已經(jīng)通過登錄框登錄
rs.open "select * from online where id=’" & session.sessionID & "’",conn,3,3
rs("name")=session("s_name")
rs("admin")=session("s_admin") ’將用戶的姓名更新為會員名稱
rs("user")=1 ’表示用戶已經(jīng)登陸,是會員身份
rs("tt")=now ’將當(dāng)前系統(tǒng)時間設(shè)置為用戶的登陸時間
rs.update
rs.close
end if
... ...
%>
... ...
<head>
... ...
<script language=java script>
function Test()
{
var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
xmlhttp.open("POST","onceonline.asp",false); // 向onceonline.asp發(fā)送更新請求
xmlhttp.setRequestHeader("CONTENT-TYPE","application/x-www-form-urlencoded");
xmlhttp.send();
}
setInterval("Test();",10); // 10秒鐘發(fā)送一次更新請求
</script>
... ...
</head>
... ...
==========================================================
onceonline.asp
<%
rs.open "select tt from online where id=’" & session.sessionID & "’",conn,3,3
rs("tt")=now() ’更新當(dāng)前在線用戶的在線時間
rs.update
rs.close
rs.open "delete from online where datediff(’s’,tt,now())>60",conn,3,1 ’刪除超時用戶
%>
==============================================================
這樣,基本保證了數(shù)據(jù)庫中用戶列表的實時性,誤差取決于更新時間和刪除時間的差值大小和服務(wù)器的處理速度,建議不要將刪除超時用戶的時間間隔取的過于小,那樣有可能會導(dǎo)致在線用戶0人的失誤。
- 1. Asp技巧和實用方法分享