Results 1 to 2 of 2

Thread: How to write to a text file!?!?!

  1. #1

    Thread Starter
    Addicted Member Buy2easy.com's Avatar
    Join Date
    Jul 2002
    Posts
    200

    Question How to write to a text file!?!?!

    How do you use asp to write to a text file...If you know and you have the time could you wite me an asp file that will write to a text file in the same directory. Thanks a lot.....

  2. #2
    Addicted Member
    Join Date
    Jul 1999
    Posts
    207
    Imports System.IO
    Imports System.Net

    ----In your code


    Dim myFileStream as StremWriter
    Dim myData As String = "Some Data"

    myFileStream = File.CreateText(Server.MapPath("/your_virtual_directory_that_your_asp_page_is_in") & "\your_textfile")

    myFileStream.WriteLine(myData)

    myFileStream.Close()

Posting Permissions

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



Click Here to Expand Forum to Full Width