明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

Counters 組件參考(二) - Get方法

[摘要]Get Get 方法根據(jù)計(jì)數(shù)器的名稱返回此計(jì)數(shù)器的當(dāng)前值。若此計(jì)數(shù)器不存在,則該方法創(chuàng)建它并將其置為 0。 語(yǔ)法 Counters.Get(CounterName) 參數(shù) CounterName 包含計(jì)數(shù)器名稱的字符串。 示例 用 <%= Counters.Get(CounterName) ...

Get
Get 方法根據(jù)計(jì)數(shù)器的名稱返回此計(jì)數(shù)器的當(dāng)前值。若此計(jì)數(shù)器不存在,則該方法創(chuàng)建它并將其置為 0。

語(yǔ)法
Counters.Get(CounterName)

參數(shù)
CounterName
包含計(jì)數(shù)器名稱的字符串。
示例
用 <%= Counters.Get(CounterName) %> 可顯示計(jì)數(shù)器的值。用 <% countervar = Counters.Get(CounterName) %> 將計(jì)數(shù)器的值賦給一個(gè)變量。

下列腳本顯示關(guān)于所喜愛(ài)的顏色的民意測(cè)驗(yàn)的投票記分。

<% If colornumber = "1" Then
Counters.Increment("greencounter")
Else
If colornumber = "2" Then
Counters.Increment("bluecounter")
Else
If colornumber = "0" Then
Counters.Increment("redcounter")
End If
End If
End If %>
<P>Current vote tally:
<P>red: <% =Counters.Get("redcounter") %>
<P>green: <% = Counters.Get("greencounter") %>
<P>blue: <% = Counters.Get("bluecounter") %>
(出處:熱點(diǎn)網(wǎng)絡(luò))