On Wed, 16 May 2001, John Clark L. Naldoza wrote:
>
> javax.servlet.RequestDispatcher
>
> public void include(ServletRequest request, ServletResponse response)
> throws ServletException, IOException
>
> According to the DOCs this would be kinda like SSI's...;-)
This is actually how we've solved
You can do it by generating your output using javascript
document.write from within the servlets to print your
results.
Ex: Within each servlet include something like...
PrintWriter out = response.getWriter();
out.println( "document.write('this is servlet data') );
...and in your web page put s
Kevin Fonner wrote:
>
> include()?? Could you please elaborate a little more? I am unfamiliar with
> that.
>
> Thanks,
> Kevin
>
Kindly refer to
javax.servlet.RequestDispatcher
public void include(ServletRequest request, ServletResponse response)
throws ServletException, IOException
Acco
include()?? Could you please elaborate a little more? I am unfamiliar with
that.
Thanks,
Kevin
- Original Message -
From: "John Clark L. Naldoza" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 15, 2001 9:11 PM
Subject: Re: perplexing multiple s
Yep, I tried that to. Frameset tags don't seem to have scrolling property.
- Original Message -
From: "Jan Labanowski" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: "Jan Labanowski" <[EMAIL PROTECTED]>
Sent: Tuesday, May 15, 2001 7:53 PM
Subj
> Kevin Fonner wrote:
>
> I wanted a web page to display the results of mutiple servlets (maybe
> even as many as 30 servlets) in rows on a web page. At first I was
> going to try to do it with frames where each frame would load a
> servlet. I then ran into a problem. I forgot that frames bind
Try to see if putting a frameset into a frame will help
Jan
On Tue, 15 May 2001, Kevin Fonner wrote:
> I wanted a web page to display the results of mutiple servlets (maybe even as many
>as 30 servlets) in rows on a web page. At first I was going to try to do it with
>frames where each frame
I wanted a web page to display the results of
mutiple servlets (maybe even as many as 30 servlets) in rows on a web
page. At first I was going to try to do it with frames where each frame
would load a servlet. I then ran into a problem. I forgot that
frames bind to a window and that you c
I wanted a web page to display the results of
mutiple servlets (maybe even as many as 30 servlets) in rows on a web
page. At first I was going to try to do it with frames where each frame
would load a servlet. I then ran into a problem. I forgot that
frames bind to a window and that you c