- 締切済み
月別アクセスカウンター
宜しくお願いします。m(__)m あるaspファイルにアクセスするとテキストファイルがはきだされ、カウントをとりたいのですがうまくいかないのです。 (書き出すファイル内では下記のような日付とアクセスカウントがカンマ区切りで記述されて月ごとに改行され保存したいのです。) 以下はき出されるテキストイメージ ------------------------- 2002/7,552 2002/8,871 2002/9,326 . . ------------------------- 現在制作したソースは以下のようになっていまして ここ3日ばかり試行錯誤しているのですが どうしてもうまくいかないのです。 ご教授宜しくお願いいたします。 -----以下ソースです------- <% Set objFile = Server.CreateObject("Scripting.FileSystemObject") sPathCountFile = Server.MapPath("count.txt") On Error Resume Next Set strmFile = objFile.OpenTextFile(sPathCountFile, 1, FALSE) If Err.Number > 0 Then cntonly01 = 0 cntonly02 = 0 Else cntonly = strmFile.ReadLine cnt_sum = split(cntonly,",") cntonly01 = cnt_sum(0) cntonly02 = cnt_sum(1) cntonly02 = cntonly02 + 1 strmFile.Close Set strmFile = objFile.OpenTextFile(sPathCountFile, 2, TRUE) strmFile.WriteLine cntonly01 & "," & cntonly02 strmFile.Close End If Dim tuki tuki=Left(dtOld,7) If tuki <> Month() then Set strmFile = objFile.OpenTextFile(sPathCountFile, 8, TRUE) strmFile.WriteLine cntonly01 & "," & cntonly02 cntonly = 0 strmFile.Close End If %>
- みんなの回答 (1)
- 専門家の回答
みんなの回答
- BlueRay
- ベストアンサー率45% (204/453)
お礼
ありがとうございます。 早速ためしてみます。 ASPをはじめてまもないので 解析に時間がかかるとおもいますので まずはお礼とおもい投稿させていただきました。 有難うございました。m(__)m