⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 9_9.asp

📁 《asp网页设计》作者沈才梁源代码,共十章
💻 ASP
字号:
<%
Dim  Path, fso
'取出目前执行程序所在的实际路径及文件名称
path=Request.ServerVariables("PATH_TRANSLATED")
Path = Mid(Path , 1, InstrRev(Path,"\"))   '取出目前执行程序所在的实际路径(除去文件名)
filename = Path & "Test1.txt"    	 
Set fso = CreateObject("Scripting.FileSystemObject")
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set fs = fso.OpenTextFile(filename, ForAppending, True)   
Response.Write "文本文件的追加:<Br>"
Strings = "这是追加的内容!"
fs.WriteLine Strings
Response.Write "写入的文字:" & Strings & "<Br>"
fs.Close
Set fs = Nothing
Set fso = Nothing
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -