Results 1 to 2 of 2

Thread: Generating a text file in ASP

  1. #1
    AllenBrown is offline Senior Member
    Join Date
    Dec 2009
    Posts
    240
    Rep Power
    3

    Default Generating a text file in ASP

    Generating a text file in ASP?

    Any suggestions are welcomed

    Please reply me fast as possible.

    What can I do?

    If you are having any suggestions then answer.

    Thanks.

  2. #2
    ScottWright is offline Senior Member
    Join Date
    Dec 2009
    Posts
    243
    Rep Power
    3

    Default

    The ASP Methods

    Download ASP.NET from the Microsoft download site and install. Import a file class called System.IO namespace that offer static methods for interrelate with files. Generate an example of the StreamWriter object. This will proceed as a file pointer. Raise the "CreateText" method of an object called "File." This creates a path of the file to be generated.

    The Syntax

    Fire up your development application (Adobe Dreamweaver or VB), choose "ASP Code" and stick the code below:
    <%@ 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 formulate a file known as "myfile.txt". Make sure that the division (“\path\”) references an actual path on hard drive where text is to be kept.

Similar Threads

  1. Generating a text file in ASP
    By TaylorRyan in forum other peripherals
    Replies: 0
    Last Post: 06-30-2010, 03:31 PM
  2. Making a text file in ASP
    By Davismoore in forum Programming
    Replies: 1
    Last Post: 06-03-2010, 01:35 PM
  3. Read a text file
    By Alexander Roads in forum Programming
    Replies: 1
    Last Post: 04-12-2010, 12:13 PM
  4. How Do I Insert Text Into a PDF File?
    By CarterBaker in forum Software Jargons
    Replies: 0
    Last Post: 02-25-2010, 06:03 PM
  5. Delete last CR and LF from text file
    By ScottWright in forum Windows XP
    Replies: 1
    Last Post: 02-25-2010, 03:43 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