ASP loading too slow

Ask a Question related to ASP, Design and Development.

  1. #1

    Default ASP loading too slow

    in what condition will lead the the ASP page run too slowing...

    thx


    Vitamin Guest

  2. Similar Questions and Discussions

    1. Slow loading pictures
      I have some pictures on my website that load very slow. In fact even the very small pictures load slow. I don't think this is a hosting issue. I...
    2. Slow loading
      I have a small ASP/MS Access app that was developed on a laptop (P4 1.6 w.256 MB RAM). On the notebook the database access times are about 2-7...
    3. AVI clips loading too slow...help!!!!
      hello, i've created a project with four short avi clips linked to it, and all the clips just load way too slow compared to the project i did with...
    4. Slow-loading .swf
      Hello everyone, I created a .swf file and tried to put it into a web page, but it never loads. It starts, goes for a while and then freezes. .swf...
    5. slow loading web site
      Yes it is the reason. Using - File, Export as web page - Pub 2002 writes what MS has coined "filtered html". Using - File, Save as, Web page - Pub...
  3. #2

    Default Re: ASP loading too slow

    Vitamin wrote:
    > in what condition will lead the the ASP page run too slowing...
    >
    too much data
    over-loaded server
    poor query optimisation

    dodgy connection
    knackered workstation
    poor browser

    to name just a few.

    you may want to narrow it down a bit.

    --
    William Tasso - [url]http://WilliamTasso.com[/url]


    William Tasso Guest

  4. #3

    Default Re: ASP loading too slow

    i think the query is a ig question in my point
    sometimes, i need inner join more than 5 table...

    "William Tasso" <ngx@tbdata.com> wrote in message
    news:%23arUDNPfDHA.2484@TK2MSFTNGP09.phx.gbl...
    > Vitamin wrote:
    > > in what condition will lead the the ASP page run too slowing...
    > >
    >
    > too much data
    > over-loaded server
    > poor query optimisation
    >
    > dodgy connection
    > knackered workstation
    > poor browser
    >
    > to name just a few.
    >
    > you may want to narrow it down a bit.
    >
    > --
    > William Tasso - [url]http://WilliamTasso.com[/url]
    >
    >

    Vitamin Guest

  5. #4

    Default Re: ASP loading too slow

    Try this:

    Remove the query. If the page loads fast without it, then that's where the
    problem is. The tables need indexes, or the query needs to be optimized.
    You might also try moving to stored procedures.


    --
    William Morris
    Product Development, Seritas LLC

    "Vitamin" <hah@seeWhat.com> wrote in message
    news:OcIDqiPfDHA.3284@tk2msftngp13.phx.gbl...
    > i think the query is a ig question in my point
    > sometimes, i need inner join more than 5 table...
    >
    > "William Tasso" <ngx@tbdata.com> wrote in message
    > news:%23arUDNPfDHA.2484@TK2MSFTNGP09.phx.gbl...
    > > Vitamin wrote:
    > > > in what condition will lead the the ASP page run too slowing...
    > > >
    > >
    > > too much data
    > > over-loaded server
    > > poor query optimisation
    > >
    > > dodgy connection
    > > knackered workstation
    > > poor browser
    > >
    > > to name just a few.
    > >
    > > you may want to narrow it down a bit.
    > >
    > > --
    > > William Tasso - [url]http://WilliamTasso.com[/url]
    > >
    > >
    >
    >

    WIlliam Morris Guest

  6. #5

    Default Re: ASP loading too slow

    If you use that query a lot, I suggest creating a new table for that one.
    If the seperate tables are changed, run a query to update the extra table.
    If you try to fetch the records again it will go a lot faster.

    Meindert, MCP

    "Vitamin" <hah@seeWhat.com> wrote in message
    news:OcIDqiPfDHA.3284@tk2msftngp13.phx.gbl...
    > i think the query is a ig question in my point
    > sometimes, i need inner join more than 5 table...
    >
    > "William Tasso" <ngx@tbdata.com> wrote in message
    > news:%23arUDNPfDHA.2484@TK2MSFTNGP09.phx.gbl...
    > > Vitamin wrote:
    > > > in what condition will lead the the ASP page run too slowing...
    > > >
    > >
    > > too much data
    > > over-loaded server
    > > poor query optimisation
    > >
    > > dodgy connection
    > > knackered workstation
    > > poor browser
    > >
    > > to name just a few.
    > >
    > > you may want to narrow it down a bit.
    > >
    > > --
    > > William Tasso - [url]http://WilliamTasso.com[/url]
    > >
    > >
    >
    >

    PB4FUN 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