略過文本文件的一行
代碼:
<!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>
結(jié)果:
The first line in the text file is skipped:
How are you today?
相關(guān)文章
- ASP.NET Web Pages 布局
- ASP.NET Web Pages 對(duì)象
- ASP.NET Web Pages 幫助器
- ASP.NET Razor 標(biāo)記
- WebSecurity GetPasswordChangeDate 方法
- C# 實(shí)例 實(shí)例解釋
- VB 實(shí)例 實(shí)例解釋
- VB 實(shí)例 使用數(shù)據(jù)庫(kù) 根據(jù)數(shù)組顯示條形圖
- 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