Multiple Handle on same file for appending

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Multiple Handle on same file for appending

    Hi,

    Is it possible to open multiple textstream on a same file for appending
    lines ?

    I would like to manage a logfile for my application that will be filled by
    many user session.

    Does anym=one has already done a such things ?

    Regards

    Sylvain


    sbourdette Guest

  2. Similar Questions and Discussions

    1. Appending text file
      Hello everyone, I need to append the begining of an .asp file using the File System Object. I can write the entire file line-by-line and save it,...
    2. appending an XML file from CFMX 6.1
      can someone tell me the easiest way to write information to the end of an existing XML file using CFMX 6.1? I have an XML file which specifies...
    3. Handle Multiple Check Boxes?
      I have a PHP generated page which displays X many records. Each record has a checkbox preceding it. The user checks several checkboxes, and hits a...
    4. Appending Text to File - Please Help!!!
      What''s wrong with this code? The IIS seems to be taking an infinite amount of time to respond (and it never did). Please Help! Set objFSO =...
    5. appending multiple PDFs together.
      Hi. I need to take a bunch of PDFs that I have made using Appligent's FDFMerge and append them together. I know I could use Appligent's AppendPDF....
  3. #2

    Default Re: Multiple Handle on same file for appending


    "sbourdette" <sbourdette@free.fr> wrote in message
    news:44358125$0$9477$626a54ce@news.free.fr...
    > Hi,
    >
    > Is it possible to open multiple textstream on a same file for appending
    > lines ?
    >
    > I would like to manage a logfile for my application that will be filled by
    > many user session.
    >
    > Does anym=one has already done a such things ?
    >
    > Regards
    >
    > Sylvain
    >
    >
    No TextStream in Scripting doesn't support this

    It's not a very scalable thing to do, you would be better off with a file
    per session and then creating a tool for merge them if necessary at a later
    time.

    Anthony.


    Anthony Jones Guest

  4. #3

    Default Re: Multiple Handle on same file for appending

    "sbourdette" <sbourdette@free.fr> wrote in message
    news:44358125$0$9477$626a54ce@news.free.fr...
    > Hi,
    >
    > Is it possible to open multiple textstream on a same file for appending
    > lines ?
    >
    > I would like to manage a logfile for my application that will be filled by
    > many user session.
    >
    > Does anym=one has already done a such things ?
    You can't do that but an alternative would to be call a common
    routine to accomplish the same thing.

    Another (better) alternative would be to use a database.


    McKirahan Guest

Posting Permissions

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

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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139