06/12/13 00:38:02 r2X/8+Vz
早速のご返答ありがとうございます。
>>820
サービスユーザーの書き込み権限、はどこで設定できるのでしょうか。
現在、ローカルに対してはAdmin権限を持っている自分のアカウントでIISの設定を行い、かつ
自分のIDのアカウントでlocalhostに対してアクセスしています。
私が概念自体理解していなそうでしたら、ご指摘ください。
>>821
writetest.datの初期状態は空。
writetest.cgiのソースは、以下の通りです。
#!c:\perl\bin\perl
require "./jcode.pl";
require "./cgi-lib.pl";
$write_file = "./writetest.dat";
$string = "Hello\n";
open(OUT,">>$write_file") || &error("Write Error : $write_file");
print OUT $string;
close(OUT);
sub error{
print "File write Error";
}