主頁 > 知識庫 > 如何用數(shù)據(jù)庫制作一個(gè)多用戶版的計(jì)數(shù)器?

如何用數(shù)據(jù)庫制作一個(gè)多用戶版的計(jì)數(shù)器?

熱門標(biāo)簽:語音電銷機(jī)器人視頻 自適應(yīng)地圖標(biāo)注 遼寧營銷智能外呼系統(tǒng)價(jià)格多少 重慶400電話哪里辦理 武漢如何辦理400電話 400電話是怎么申請 教育機(jī)構(gòu)地圖標(biāo)注 常州智能外呼電銷機(jī)器人如何 推銷電話機(jī)器人怎么打電話的

count.asp

' 計(jì)數(shù)器的核心程序.

%
Set conn = Server.CreateObject("ADODB.Connection")
dbpath=server.MapPath("count.mdb")
conn.open "driver={Microsoft Access Driver (*.mdb)};dbq="DbPath
user=Request.QueryString("user")

sql="update counttable set curvalue=curvalue+1 where user='"user"'"

' 計(jì)數(shù)值加1.
conn.Execute sql
sql="select curvalue from counttable where user='"user"'"
set rs=conn.Execute(sql)

function chgimg(curvalue)
dim s,i,g
s=cstr(curvalue)
for i=1 to len(s)

' 定義chgimg函數(shù),將計(jì)數(shù)值用圖形表示.

g=g "img src=1/" mid(s,i,1) ".gif align=bottom>"

' 在正式使用計(jì)數(shù)器時(shí),圖片的路徑要用實(shí)際路徑.

next
chgimg=g
end function

toimg=chgimg(rs("curvalue"))
toimg="document.write(" "'" toimg "')"

' 調(diào)用chgimg函數(shù)傳入計(jì)數(shù)器值.


Response.Write(toimg)

' 輸出.
rs.close
set rs=nothing
conn.Close
set conn=nothing
%>

 

get.htm

' 申請表單.
form method="POST" action="getcl.asp">
p>
用戶名input type="text" name="user" size="20">/p>
p>
計(jì)數(shù)器初始值input type="text" name="curvalue" size="20">/p>
p>
主頁地址input type="text" name="pageurl" size="20">/p>
p>input type="submit" value="
提交" name="B1">input type="reset" value="重寫" name="B2">/p>
/form>

getcl.asp

' 處理用戶的輸入的表單,并加入數(shù)據(jù)庫.
%
Set conn = Server.CreateObject("ADODB.Connection")

' 建立與數(shù)據(jù)庫的連接.
dbpath=server.MapPath("count.mdb")

' 取得數(shù)據(jù)庫的實(shí)際路徑.
conn.open "driver={Microsoft Access Driver (*.mdb)};dbq="DbPath
set rs=server.CreateObject("adodb.recordset")

user=Request.Form("user")
pageurl=Request.Form("pageurl")
curvalue=Request.Form("curvalue")

' 取得用戶信息.

sql="select * from counttable where user='"user"'"

' 檢查用戶名是否存在.
rs.Open sql,conn,1,3
if not rs.EOF then
Response.Write"title>
申請出錯(cuò)/title>"
Response.Write"
,用戶名已經(jīng)存在!請重新選擇.../title>"

Response.End

' 停止向下處理,要求用戶重填.
end if

rs.AddNew
rs("user")=user
rs("pageurl")=pageurl
rs("curvalue")=curvalue
rs.Update

' 將用戶信息加入數(shù)據(jù)庫.
rs.Close
set rs=nothing
conn.Close
set conn=nothing
%>


[1]

您可能感興趣的文章:
  • 不用數(shù)據(jù)庫的多用戶文件自由上傳投票系統(tǒng)(2)
  • 不用數(shù)據(jù)庫的多用戶文件自由上傳投票系統(tǒng)(3)
  • 不用數(shù)據(jù)庫的多用戶文件自由上傳投票系統(tǒng)(1)
  • mysql通過文檔讀取并執(zhí)行命令之快速為mysql添加多用戶和數(shù)據(jù)庫技巧

標(biāo)簽:襄陽 邯鄲 朔州 遵義 中山 柳州 雞西 威海

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《如何用數(shù)據(jù)庫制作一個(gè)多用戶版的計(jì)數(shù)器?》,本文關(guān)鍵詞  如,何用,數(shù)據(jù)庫,制作,一個(gè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《如何用數(shù)據(jù)庫制作一個(gè)多用戶版的計(jì)數(shù)器?》相關(guān)的同類信息!
  • 本頁收集關(guān)于如何用數(shù)據(jù)庫制作一個(gè)多用戶版的計(jì)數(shù)器?的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章