My favorites
▼
|
Sign in
lineadecodigo
Web Code Samples in spanish
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
lineadecodigo_asp
/
ficheros
/
crear-fichero.asp
r478
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<%@ Language=VBScript %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Crear un fichero de tecto en ASP</title>
</head>
<body>
<h1>Crear un fichero de tecto en ASP</h1>
<%
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set TextStream = fso.CreateTextFile("c:\temp\victor.txt")
TextStream.WriteLine("Línea con un salto de carro")
TextStream.Write("Línea normal y corriente")
TextStream.close
Set fso = Nothing
Set TextStream = Nothing
%>
</p>
<hr/>
Artículo disponible en: <a href="http://lineadecodigo.com/asp/crear-un-fichero-de-texto-con-asp/">http://lineadecodigo.com/asp/crear-un-fichero-de-texto-con-asp/</a><br/>
<a href="http://lineadecodigo.com" title="Linea de Codigo">lineadecodigo.com</a>
</body>
</html>
Show details
Hide details
Change log
r195
by vcuervo on Oct 19, 2009
Diff
Crear un fichero en ASP
Go to:
...o_asp/ficheros/crear-fichero.asp
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 951 bytes, 36 lines
View raw file
Powered by
Google Project Hosting