asp從發布至今已經7年了,使用asp技術已經相當成熟,自從
微軟推出了asp.net之後就逐漸停止了對asp版本的更新。但是由於有很多人仍然習慣使用asp來開發**,所以,再次我將以乙個簡單的例子來說明在asp中如何使用cache。
code
asp:default.asp
<%@language=vbscript%>
<%option explicit%>
<%response.buffer=true%>
每隔10秒重新整理cache:
<%
response.flush
gethtmlstream
response.write
htmlstream
%>
asp:getcache.asp
function fetchhtmlstream
dim rs ,strsql, strhtml
set rs = createobject("adodb.recordset")
strsql = "select categoryid , categoryname from categories"
rs.open strsql, strconn,adopenforwardonly,adlockreadonly
strhtml = strhtml & ""
while (not rs.eof)
strhtml = strhtml & ""
strhtml = strhtml & rs.fields("categoryname")
strhtml = strhtml & "" rs.movenext
wend
strhtml = strhtml & ""
rs.close
set rs = nothing
fetchhtmlstream = strhtml
end function
%>
asp:conn.asp
<%
dim strconn
strconn = "provider=sqloledb.1;integrated security=sspi;persist security info=false;initial catalog=northwind"
%>
asp中快取cache技術的應用
asp從發布至今已經7年了,使用asp技術已經相當成熟,自從微軟推出了asp.net之後就逐漸停止了對asp版本的更新。但是由於有很多人仍然習慣使用asp來開發 所以,再次我將以乙個簡單的例子來說明在asp中如何使用cache。簡單的說使用cache基本原理是,把經常需要且獲得代價昂貴的資料在記憶體...
ASP模板技術應用例項
所謂的模板,就是設計完工的標準的html 其中需要由程式實現的功能部分將採用特殊字串代替。然,這些特殊字串需要在顯示的時候被編譯為對應的功能。1,設計資料庫testmb.mdb 新建表moban 欄位m id 自動編號,主關鍵字 欄位m html 備註型別 2,假設第一模板內容 將下列 拷貝到m h...
ASP應用中的應用函式
經常寫些系統,那麼一般都是從登入程式開始,每接乙個系統就寫一次登入,好麻煩。乾脆直接做個登入驗證函式吧,對我來說,大都情況可以勝任了 function chk regist requestname,requestpwd,tablename,namefield,pwdfield,reurl dim n...