- 追加された行はこの色です。
- 削除された行はこの色です。
- ASPメモ へ行く。
***変数宣言の強制 [#f5aa31b2]
<% Option Explicit %>
***定数[#r17f0915]
Const PI = 3.14
Response.Write(( 10 * 10 ) * PI )
***配列 [#lfcdf905]
Dim week(6) '0~6の7要素を持つ配列が作成されます。
week(0) = "sun"
week(1) = "mon"
Response.Write(week(0)) 'sunと出力
***文字列結合演算子 [#n4aa1486]
a & b
***IF文 [#u20f6ce6]
If 条件1 Then
条件1が真の処理
ElseIf 条件2 Then
条件2が真の処理
Else
その他
End If
***SELECT文 [#xc6d933e]
Select Case 値
Case 条件
処理ブロック
Case 条件
処理ブロック
Case Else
処理ブロック
End Select
***DO文 [#e93fc44e]
Do Until 条件
処理ブロック
Loop
Do
Response.Write("Hello World")
Loop Until 11 > 10
***WHILE文 [#qe238e61]
Do While 条件
処理ブロック
Loop
while 条件
処理ブロック
Wend
***FOR文 [#w373f5a4]
For a = 1 To 10 Step 1
Response.Write(a)
Next
***EXIT [#rd75183f]
Do While 1
Exit Do
Loop
***配列に対して全ての処理 [#xcf21ba4]
Dim intArr(10)
Dim intTmp
For intTmp = To 10
intArr(intTmp)=intTmp
Next
For Each intTmp in intArr
Response.Write(intTmp)
Next
***GETメソッド [#o0c2ffd0]
Request.QueryString("sample")
***POSTメソッド [#na7becef]
Request.Form("txtSample")
*参考 [#b9a97eb6]
-http://www.site-cooler.com/kwl/asp/
----
&size(12){Total:&counter(total); / Today:&counter(today); / Yesterday:&counter(yesterday);};