I am using 4 frames  in the HTML page.  The only way I can get images to
show in an HTML/JSP page is to use the full URL (copied from the Fields JSP
book) - does that mean that there will be a call to the server for each
image (as well as for each frame) eg.

  <img src="http://127.0.0.1:8080/search/jsp/search/Cart.gif" align="right">

If so will a top frame with 6 images will appear on each page of the web
app - will that be a potential performance problem?

John

----- Original Message -----
From: Craig R. McClanahan <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, June 06, 2000 12:35 AM


> "" wrote:
>
> > Hi
> >
> > I have a HTML page which consists of 3 frames. How does a servlet paint
such an
> > HTML page?
> >
> > Regards
> > Shivashis
> >
>
> It does not paint such a page directly -- what happens is that there will
end up
> being four requests to your server.  The first request will be to the page
that has
> the <frameset> document in it.  The remaining three requests will be
issued by the
> three frames themselves, using the URIs that you specified in the <frame>
tags.
>
> Craig McClanahan
>
>
___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
>

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to