返回行數(shù)
代碼:
<!DOCTYPE html><html>
<body>
<p>This is all the lines in the text file (with line numbers):</p>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)
do while f.AtEndOfStream = false
Response.Write("Line:" & f.Line & " ")
Response.Write(f.ReadLine)
Response.Write("<br>")
loop
f.Close
Set f=Nothing
Set fs=Nothing
%>
</body>
</html>
結(jié)果:
This is all the lines in the text file (with line numbers):
Line:1 Hello!
Line:2 How are you today?
相關(guān)文章
- ASP.NET Web Pages – 發(fā)布
- ASP.NET WebPages 幫助器參考手冊(cè)
- ASP.NET Razor 語法
- ASP.NET MVC 簡介
- ASP.NET MVC 文件夾
- ASP.NET MVC 視圖
- WebSecurity GetCreateDate 方法
- ASP.NET HTML 控件 Calendar 2
- ASP.NET HTML 控件 Table
- ASP.NET HTML 控件 SortedList RadioButtonList 1
- C# 實(shí)例 可重復(fù)使用的頭部和底部
- ASP.NET Calendar CellPadding 屬性
- ASP.NET Calendar DayHeaderStyle 屬性
- ASP.NET CalendarDay IsWeekend 屬性
- ASP.NET HyperLink NavigateUrl 屬性
- ASP.NET Panel BackImageUrl 屬性
- ASP.NET TableRow HorizontalAlign 屬性
- ASP.NET TableRow VerticalAlign 屬性
- htmltable
- ASP.NET Visible 屬性