Board logo

標題: ASP 讀取 TXT 文字檔 [打印本頁]

作者: laigs218    時間: 2021-7-20 15:37     標題: ASP 讀取 TXT 文字檔

<html>

<head>
<title></title>
</head>

<body>
<%
Set fs = CreateObject("Scripting.FileSystemObject")
Set ts = fs.OpenTextFile ("c:\MyText.txt")
'只會讀取第一行的資料
Do While ts.AtEndOfLine <> True
   Response.write ts.Read(1)
   ts.skip(1)
Loop
ts.Close
%>
</body>
</html>




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)