略過文本文件的一部分
代碼:
<!DOCTYPE html><html>
<body>
<p>The first four characters in the text file are skipped:</p>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)
f.Skip(4)
Response.Write(f.ReadAll)
f.Close
Set f=Nothing
Set fs=Nothing
%>
</body>
</html>
結(jié)果:
The first four characters in the text file are skipped:
o! How are you today?
相關(guān)文章
- ASP.NET Web Pages 文件
- ASP.NET MVC 參考手冊
- ASP.NET 數(shù)據(jù)綁定
- ASP.NET XML 數(shù)據(jù)綁定
- ASP.NET RegularExpressionValidator 控件
- WebSecurity ResetPassword 方法
- HTML Table 2
- Button
- ASP.NET HTML 控件 RegularExpressionValidator
- VB 實例 If 條件
- ASP.NET AccessKey 屬性
- ASP.NET ToolTip 屬性
- ASP.NET Image AlternateText 屬性
- ASP.NET ImageButton CausesValidation 屬性
- ASP.NET ImageButton ValidationGroup 屬性
- ASP.NET LinkButton PostBackUrl 屬性
- ASP.NET LinkButton Text 屬性
- ASP.NET Panel Direction 屬性
- ASP.NET TextBox Wrap 屬性
- Web 控件標準屬性