Webpage stops loading when link is clicked.

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Webpage stops loading when link is clicked.

    I've managed to construct an ASP page that reads JPG file names from a
    directory, then constructs a page with a table of links to bigger JPG
    pictures.

    I have a big problem...

    If the page hasn't entirely loaded and I click on one of the links
    pictures that has loaded, then the original page will stop loading and
    the new popup page loads instead. I don't want the original page to
    stop loading. How do I do this?

    I'm pulling my hair out. : (

    Any help would be really appreciated.

    Thanks.


    Jam
    Jammer Guest

  2. Similar Questions and Discussions

    1. Populate XML data based on clicked link
      I think the summary may describe the problem but - I'm doing a page where a product diagram allows the visitor to select a product group. This...
    2. PDFs as Hyperlink in Email Not Loading When Clicked
      Hi - Ran into a rather strange issue that I'm hoping someone here can help with. We've created a user survey based off some information we have...
    3. loading MC loading text path question? link fixed
      Sorry my link to the files was bad before try this link 8) this is the code in the frame of the shell.fla //load Movie Behavior
    4. Fading text after link is clicked. How do I do it?
      I have a basic site which has four links on the top and I need each of them to link to a particular place in the movie (portfolio linking to the...
    5. Dynamically Loaded Link (URL) won't work when clicked...help please
      Hey folks, I have a piece of navigation (a movie clip made to work like a rollover button(w/ 2 frames of diff background colors) w/ a dynamic text...
  3. #2

    Default Re: Webpage stops loading when link is clicked.

    Jammer wrote:
    > I've managed to construct an ASP page that reads JPG file names from a
    > directory, then constructs a page with a table of links to bigger JPG
    > pictures.
    >
    > I have a big problem...
    >
    > If the page hasn't entirely loaded and I click on one of the links
    > pictures that has loaded, then the original page will stop loading and
    > the new popup page loads instead. I don't want the original page to
    > stop loading. How do I do this?
    >
    Turn on the buffer:
    <%
    Response.Buffer = True
    'etc.
    %>

    This will force all the server-side code to be executed and the entire html
    page built and buffered on the server before it is sent to the client. The
    page should also load quicker in the browser.

    HTH,
    Bob Barrows



    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