当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP Write 方法

ASP
ASP 介绍
ASP Install
ASP 语法
ASP 变量
ASP Procedures
ASP Forms
ASP Cookies
ASP Session
ASP Application
ASP #include
ASP Global.asa
ASP Send e-mail
ASP Response
ASP Request
ASP Application
ASP Session
ASP Server
ASP Error
ASP FileSystem
ASP TextStream

ASP Write 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 311 ::
收藏到网摘: n/a

The Write method writes a specified text to a TextStream file.
ASP Write方法的主要作用是向文本文件中写一段指定的文本。

Note: This method write text to the TextStream file with no spaces or line breaks between each string.
注意:这个方法的作用是向一个文本文件中书写一段文本,但是在每个字符串之间不包含空格和换行这两个属性。

Syntax
语法

TextStreamObject.Write(text)

Parameter
参数
Description
描述
text Required. The text to write to the file
必要参数。向文本文件中书写文本

Example
举例

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:test.txt",true)
f.write("Hello World!")
f.write("How are you today?")
f.close
set f=nothing
set fs=nothing
%>

The file test.txt will look like this after executing the code above:

Hello World!How are you today?

评论 (0) All

登陆 | 还没注册?