Results 1 to 2 of 2

Thread: Making a text file in ASP

  1. #1
    Davismoore is offline Senior Member
    Join Date
    Dec 2009
    Posts
    284
    Rep Power
    3

    Default Making a text file in ASP

    Making a text file in ASP?

    Any suggestions are eagerly welcomed

    Please reply me fast as probable.

    What steps will be desired.

    If you are having any suggestions then reply me.

    Thanks in advance.

  2. #2
    JacksonPerez is offline Banned
    Join Date
    Dec 2009
    Posts
    274
    Rep Power
    0

    Default

    The ASP Methods

    Download ASP.NET from Microsoft download site and install. Import a file class called System.IO namespace (See "Syntax" Section) that gives static way for interrelate with files. Make an example of StreamWriter object. This will proceed as a file pointer. Appeal to "CreateText" method of an object known as "File." This will make a path of the file to be generated.

    The Syntax

    Stir up your expansion application (Adobe Dreamweaver or VB), choose "ASP Code" and stick the code under:
    <%@ Import Namespace= "System.IO" %>
    Dim me As StreamWriter
    Try
    Me= File.CreateText (Server. MapPath ("\path\") & "myfile.txt")
    End Try
    End Sub

    Save the file.

    The over code makes file called "myfile.txt". Make sure that section ("\path\") references a actual path on your hard drive wherever text is near be stored.

Similar Threads

  1. Making a GIF file online
    By Williamsjones in forum other peripherals
    Replies: 0
    Last Post: 08-19-2010, 01:49 PM
  2. Making an .xml file
    By AllenBrown in forum Programming
    Replies: 0
    Last Post: 05-27-2010, 02:09 PM
  3. Making an XSL File From XML
    By Davismoore in forum Programming
    Replies: 0
    Last Post: 01-11-2010, 02:34 PM
  4. Making XSL From XML File
    By Garcíarobine in forum Programming
    Replies: 0
    Last Post: 01-11-2010, 01:47 PM
  5. Making an .Xml File
    By james_moore in forum Programming
    Replies: 0
    Last Post: 01-08-2010, 04:21 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

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 37 38 39 40 41 42 43 44 45 46 47 48