Making the first page of the site appear more quickly

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

  1. #1

    Default Re: Making the first page of the site appear more quickly

    its all controlled by the browser. IE only allows two concurrent downloads
    at a time. you could use client script to download the images and set them
    at runtime to control the image downloaing. you will want to specifiy the
    accurate sizes for the empty img tags, so that the page does not have to be
    re-rendered after the images load.

    the text is actually downloaded first, and as its parsed, the other required
    content (any src=) is queued up for downloading.

    -- bruce (sqlwork.com)




    "Florian Marinoiu" <Florian_no.spam_marinoiu@buroplus.ca> wrote in message
    news:3F2683A5.43A8246D@buroplus.ca...
    > Hi,
    >
    > I was making some tests with a new site that we have implemented and I
    > discovered that while I browse the site for the first time and I do not
    > have the images in the browser's cache it takes a little bit of time (a
    > couple of seconds or more) before i can see that some objects appear on
    > the page. I was wondering if there is any way that I could intruct the
    > IIS to deliver first the text of the page and then the images or even
    > better if I could tell IIS to deliver smaller graphics first and then
    > the larger ones. Is it any page directive for such think ore any
    > modification I could do in the META data of teh IIS?
    > Also, is it any way I could instruct the IIS to make more concurrent
    > connections with the browser so that more images are delivered in the
    > same time or it is a client(browser) config?
    >
    > I would appreciate your help.
    >
    > Thanks,
    > Florian
    >

    bruce barker Guest

  2. Similar Questions and Discussions

    1. Making links relative to site root
      we just moved from 3.0 to 3.1 and are having this same problem now, which didn't seem to be there in 3.0. not only are we now ending up with ../../...
    2. making a login page which shud lead to a https page ?
      (Type your message here) making a login page which shud lead to a https page ? ne suggestions -------------------------------- From: sneha...
    3. im making a site
      hi all um im making a site and i need a name and aslo what links should i put in this site?? please reply and send me private messeges and i might...
    4. im making my own site??
      im making my own site but i need help what should be on my site?? i want to have a site everyone will like and everyone will enjoy?? can some...
    5. making the perfect pop-up window for flash site
      not sure what you mean exactly.... make sure that when you place your flash movie in dreamweaver (or whatever you use) the movie is set to it's...
  3. #2

    Default Re: Making the first page of the site appear more quickly

    Hi Bruce,

    is it then any way that I could tell the browser to start showing at least the
    text as soon as it gets it and then to put images as they arrive?

    Thanks,
    Florian

    bruce barker wrote:
    > its all controlled by the browser. IE only allows two concurrent downloads
    > at a time. you could use client script to download the images and set them
    > at runtime to control the image downloaing. you will want to specifiy the
    > accurate sizes for the empty img tags, so that the page does not have to be
    > re-rendered after the images load.
    >
    > the text is actually downloaded first, and as its parsed, the other required
    > content (any src=) is queued up for downloading.
    >
    > -- bruce (sqlwork.com)
    >
    > "Florian Marinoiu" <Florian_no.spam_marinoiu@buroplus.ca> wrote in message
    > news:3F2683A5.43A8246D@buroplus.ca...
    > > Hi,
    > >
    > > I was making some tests with a new site that we have implemented and I
    > > discovered that while I browse the site for the first time and I do not
    > > have the images in the browser's cache it takes a little bit of time (a
    > > couple of seconds or more) before i can see that some objects appear on
    > > the page. I was wondering if there is any way that I could intruct the
    > > IIS to deliver first the text of the page and then the images or even
    > > better if I could tell IIS to deliver smaller graphics first and then
    > > the larger ones. Is it any page directive for such think ore any
    > > modification I could do in the META data of teh IIS?
    > > Also, is it any way I could instruct the IIS to make more concurrent
    > > connections with the browser so that more images are delivered in the
    > > same time or it is a client(browser) config?
    > >
    > > I would appreciate your help.
    > >
    > > Thanks,
    > > Florian
    > >
    Florian Marinoiu 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