取得列數(shù)
代碼:
<!DOCTYPE html><html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.OpenTextFile(Server.MapPath("testread.txt"), 1)
Response.Write(f.Read(2))
Response.Write("<p>The cursor is now standing in position " & f.Column & " in the text file.</p>")
f.Close
Set f=Nothing
Set fs=Nothing
%>
</body>
</html>
結(jié)果:
He
The cursor is now standing in position 3 in the text file.
相關(guān)文章
- ASP.NET Web Pages 文件夾
- ASP.NET Razor 標(biāo)記
- ASP.NET Razor VB 邏輯
- ASP.NET MVC HTML 幫助器
- ASP.NET ViewState
- ASP.NET Table 控件
- WebSecurity CurrentUserName 屬性
- WebSecurity IsCurrentUser 方法
- VB 實(shí)例 While 循環(huán)
- ASP.NET Calendar SelectWeekText 屬性
- ASP.NET Calendar TitleStyle 屬性
- ASP.NET AdRotator AdvertisementFile 屬性
- ASP.NET RadioButtonList RepeatColumns 屬性
- ASP.NET RadioButtonList TextAlign 屬性
- ASP.NET Style ForeColor 屬性
- ASP.NET Table GridLines 屬性
- ASP.NET TextBox AutoCompleteType 屬性
- ASP.NET BindingContainer 屬性
- 返回行數(shù)
- 取得列數(shù)