Results 1 to 5 of 5

Thread: General....

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Posts
    343

    Angry General....

    Hello,

    I dynamically create a html file through my asp webpage. I then want to save this page in a directory called "temp". Now, locally it works fine, I just use

    Code:
    set fso = createobject("scripting.FileSystemObject")
    set tf = fso.CreateTextFile("c:\temp\TestQuote.html",true)
    How will I do this on my hosts server. They said I cannot use the string above, but must save it in my webspace.

    All my files lie in "\myweb" on my hosts server.

    Will I then do it like this....

    Code:
    set fso = createobject("scripting.FileSystemObject")
    set tf = fso.CreateTextFile("\myweb\temp\testquote.htmll",true)
    Are all the "\" and " etc etc there??

    Any help please.

    Thanks,
    T

  2. #2
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    Just use the path that would be relative to where the ASP file is stored.
    Josh
    Get these: Mozilla Opera OpenBSD
    I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.

  3. #3
    Lively Member harsoni's Avatar
    Join Date
    Oct 2000
    Posts
    118
    hi turfbult,
    CODE
    __________________________________________
    set fso = createobject("scripting.FileSystemObject")
    set tf = fso.CreateTextFile("\myweb\temp\testquote.htmll",true)
    __________________________________________________


    seems to me it works fine...try it out

    Sonia

  4. #4
    Lively Member harsoni's Avatar
    Join Date
    Oct 2000
    Posts
    118

    Lightbulb

    See that \myweb\temp\ folder exits

    Sonia

  5. #5
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    As, JoshT said, it would be easier to just use a relative path...

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

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