"list of files" & timeout

Ask a Question related to ASP, Design and Development.

  1. #1

    Default "list of files" & timeout

    running the following script (bottom mail) results after a few minutes in an
    timeout error

    Error Type:
    Active Server Pages, ASP 0113 (0x80004005)
    The maximum amount of time for a script to execute was exceeded. You can
    change this limit by specifying a new value for the property
    Server.ScriptTimeout or by changing the value in the IIS administration
    tools.
    /htdocs/dany/list.asp

    tested on winxp pro & local IIS

    what could be wrong?

    thx

    d.

    <%
    Whichfolder=server.mappath("\") &"/"
    Dim fs, f, f1, fc
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set f = fs.GetFolder(Whichfolder)
    Set fc = f.files

    For Each f1 in fc
    Response.write (f1.name & "<BR>")
    Next
    %>


    d.jpr Guest

  2. Similar Questions and Discussions

    1. cfqueryparam ignores null="yes" when list="yes"
      I get an unexpected result when using cfqueryparam with list="yes" and null="yes" using CF 7.0.1 and MSSQL 2000. When i run this code: <cfset...
    2. WebService timeout after setting debug="false"
      Hi, We set debug="false" at web.config of a WebService for performance sake. We found that after set, the web service request will sometimes got a...
    3. System.Data.SqlClient "Timeout expired" causing ASP.net web application to automatically restart.
      I have a Web Server running IIS 5 or 6 on Windows 2K and Windows 2003 Server that is experiencing strange shutdown problems. We are using ASP.NET...
    4. MX is showing "Desktop" in my local files list?
      What gives? I have a Desktop tree in my local files list, when I view any of my sites...I basically don't want it there - is this just a setting...
    5. "Start" "Program" "Menu" list is empty
      For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your...
  3. #2

    Default Re: "list of files" & timeout

    d.jpr wrote:
    > running the following script (bottom mail) results after a few
    > minutes in an timeout error
    >
    > Error Type:
    > Active Server Pages, ASP 0113 (0x80004005)
    > The maximum amount of time for a script to execute was exceeded. You
    >
    > <%
    > Whichfolder=server.mappath("\") &"/"
    > Dim fs, f, f1, fc
    > Set fs = CreateObject("Scripting.FileSystemObject")
    [url]http://www.aspfaq.com/show.asp?id=2180[/url]

    HTH,
    Bob Barrows

    --
    Microsoft MVP - ASP/ASP.NET
    Please reply to the newsgroup. This email account is my spam trap so I
    don't check it very often. If you must reply off-line, then remove the
    "NO SPAM"


    Bob Barrows 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