略过文本文件的一行
代码:
<!DOCTYPE html><html>
<body>
<p>The first line in the text file is skipped:</p>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)
f.SkipLine
Response.Write(f.ReadAll)
f.Close
Set f=Nothing
Set fs=Nothing
%>
</body>
</html>
结果:
The first line in the text file is skipped:
How are you today?
相关文章
- ASP.NET Web Pages 布局
- ASP.NET Web Pages 对象
- ASP.NET Web Pages 帮助器
- ASP.NET Razor 标记
- WebSecurity GetPasswordChangeDate 方法
- C# 实例 实例解释
- VB 实例 实例解释
- VB 实例 使用数据库 根据数组显示条形图
- ASP.NET ToolTip 属性
- ASP.NET Image ImageAlign 属性
- ASP.NET ListItem Value 属性
- ASP.NET RadioButtonList RepeatLayout 属性
- ASP.NET BulletedList BulletStyle 属性
- ASP.NET Style BorderColor 属性
- ASP.NET Style Height 属性
- ASP.NET TableRow HorizontalAlign 属性
- ASP.NET TextBox AutoPostBack 属性
- htmlinputradiobutton
- htmltable
- htmltable 2