略过文本文件的一部分
代码:
<!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>
结果:
The first four characters in the text file are skipped:
o! How are you today?
相关文章
- ASP.NET Web Pages 文件
- ASP.NET MVC 参考手册
- ASP.NET 数据绑定
- ASP.NET XML 数据绑定
- 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 控件标准属性