AcitveX 기술을 이용한 javascript언어의 파일 읽고 저장ActiveXObject를 이용하므로 IE(Internet explorer)에서만 사용가능합니다. 실행 화면load 누르면 파일에서 불러오고save를 누르면 저장 123456789101112131415161718192021222324252627282930313233343536373839404142434445File save and load Testvar fso=new ActiveXObject("Scripting.FileSystemObject");var filename="C:\경로\파일이름.txt";var delim="\t";function savefile() { if (!fso.FileExists(filename)) { fso.Creat..