Web page is too slow when running at the first times

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Web page is too slow when running at the first times

    Do we have the way to run my web page at the first times that is not SLOW ?

    I realize that comes from compiling to machine code at the first times. But
    there could have some way to recompile manually.


    Sara T. Guest

  2. Similar Questions and Discussions

    1. Very Slow Load Times
      I have noticed that the first time I load the new Shockwave plugin for the day, it takes a very long time to get going. Like 20 or 30 seconds. On...
    2. Slow download times
      My previous web page was built with Frontpage Express. It loaded fairly quickly the first time, and then very quickly since it appeared to load...
    3. Quicktime is running slow
      Hello: Do you know how can I get my quicktime video run smooth and not jumping? I use it from hard disk. thank you
    4. Extremely Slow Response Times in DWMX
      Is anyone else experiencing unacceptably slow response times for simple actions in DWMX? I mean things like switching tabs or saving files. These...
    5. Samba running running slow...
      I installed RH 9 on a box and Samba ran great: copying files from the NT box to the Linux box and visa versa. Then I tried to recompile Apache...
  3. #2

    Default Re: Web page is too slow when running at the first times

    if you are using visual studio.net then press CTRL+SHIFT+B to compile the
    code without running it.

    then keep an instance of internet explorer running where you can view your
    page.

    is this what you mean?

    "Sara T." <t_sarana@hotmail.com> wrote in message
    news:eS6Pk02UDHA.1952@TK2MSFTNGP11.phx.gbl...
    > Do we have the way to run my web page at the first times that is not SLOW
    ?
    >
    > I realize that comes from compiling to machine code at the first times.
    But
    > there could have some way to recompile manually.
    >
    >

    suzy Guest

  4. #3

    Default Re: Web page is too slow when running at the first times

    I thought that when we compile my code to a *.dll file in VS.NET, it's just
    compiled to IL but when the first times we run, it compile again to native
    code that makes the web page slow.

    So, it could have the better way to make the page faster if it is not
    compiled.

    "suzy" <phillipa@nospamming.com> wrote in message
    news:e5JmI62UDHA.2004@TK2MSFTNGP10.phx.gbl...
    > if you are using visual studio.net then press CTRL+SHIFT+B to compile the
    > code without running it.
    >
    > then keep an instance of internet explorer running where you can view your
    > page.
    >
    > is this what you mean?


    Sara T. Guest

  5. #4

    Default Re: Web page is too slow when running at the first times

    Check out this article, solutions for your problem is here
    [url]http://www.aspalliance.com/PaulWilson/Articles/?id=9[/url]

    --
    Saravana
    Microsoft India Community Star,
    MCAD,SE,SD,DBA.


    "Sara T." <t_sarana@hotmail.com> wrote in message
    news:#sVm8D3UDHA.372@tk2msftngp13.phx.gbl...
    > I thought that when we compile my code to a *.dll file in VS.NET, it's
    just
    > compiled to IL but when the first times we run, it compile again to native
    > code that makes the web page slow.
    >
    > So, it could have the better way to make the page faster if it is not
    > compiled.
    >
    > "suzy" <phillipa@nospamming.com> wrote in message
    > news:e5JmI62UDHA.2004@TK2MSFTNGP10.phx.gbl...
    > > if you are using visual studio.net then press CTRL+SHIFT+B to compile
    the
    > > code without running it.
    > >
    > > then keep an instance of internet explorer running where you can view
    your
    > > page.
    > >
    > > is this what you mean?
    >
    >
    >

    Saravana Guest

  6. #5

    Default Re: Web page is too slow when running at the first times

    Keep in mind that in addition to compiling the IL to machine code, temporary
    class files are created and held in IIS during this first run. If you have
    many pages in your web site but generally low volume for the site, you could
    actually decrease the overall performance of your web server by pre-hitting
    all your pages.


    "Sara T." <t_sarana@hotmail.com> wrote in message
    news:eS6Pk02UDHA.1952@TK2MSFTNGP11.phx.gbl...
    > Do we have the way to run my web page at the first times that is not SLOW
    ?
    >
    > I realize that comes from compiling to machine code at the first times.
    But
    > there could have some way to recompile manually.
    >
    >

    Scott M. 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