View Source
Go Back to /jang/books/asp/example/fileAccess/test.asp
<%@language=jscript%>
<%title="伺服器和用戶端的時間比較"%>
<!--#include file="../head.inc"-->
<!--#include file="../listQueryResult.inc"-->
<hr>

<%
fso = new ActiveXObject("Scripting.FileSystemObject");
absPath=Server.MapPath("jjj.txt");
//fid = fso.CreateTextFile(file, true);
fid = fso.OpenTextFile(absPath, 2, true);
fid.Write("test\r\n");
fid.Close();
%>


<hr>
<!--#include file="../foot.inc"-->