📄 readline.asp
字号:
<%
Set fs = Server.CreateObject("Scripting.FileSystemObject")
File = Server.MapPath( "Sample.txt" )
Set txtf = fs.OpenTextFile( File )
While Not txtf.atEndOfStream ' 先确定还没有到达结尾的位置
Line = txtf.ReadLine ' 读取一行信息
Response.Write Line & "<BR>"
Wend
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -