最新的Web開發教程
 

ASP閱讀方法


<完整文本流對象參考

Read方法讀取一個文本流文件指定的字符數,並返回其結果作為一個字符串。

句法

TextStreamObject.Read(numchar)

參數 描述
numchar 需要。 字符數從文件中讀取

<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt")
f.write("Hello World!")
f.close

set t=fs.OpenTextFile("c:\test.txt",1,false)
x=t.Read(5)
t.close
Response.Write("The first five characters are: " & x)
%>

Output:

The first five characters are: Hello

<完整文本流對象參考