Ask a Question related to ASP, Design and Development.
-
Jammer #1
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
-
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... -
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... -
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 -
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... -
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... -
Bob Barrows #2
Re: Webpage stops loading when link is clicked.
Jammer wrote:
Turn on the buffer:> 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?
>
<%
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



Reply With Quote

