Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to put two JSP's in one page?

Status
Not open for further replies.

thelordoftherings

Programmer
May 16, 2004
616
IL
Hello,

I have two working JSP's.
When I try to set them at one page using frameset like this:
<frameset rows="50%,50%">
<frame src="1.jsp">
<frame src="2.jsp">
</frameset>

I don't see the pages, why is that?

 
Individually do the JSP's work?

Can you give us a live url?

I am imagining your paths are incorrect.
 
Individually the JSP's ware working.
They are sitting inside WAR file called JMSTest and I call them like this:
<frameset rows="50%,50%">
<<frame src="/JMSTest/QueueSend.jsp">
<frame src="/JMSTest/QueueReceiveInTx.jsp">
</frameset>

I also tried:
<frameset rows="50%,50%">
<<frame src="QueueSend.jsp">
<frame src="QueueReceiveInTx.jsp">
</frameset>

And it is not working...

 
You have a type

<<frame src="/JMSTest/QueueSend.jsp">

Two '<'

 
I'd need to see it live, I think its just some path problem.

 
Don't you need </frame> tags? Perhaps the page is not parsing correctly.

--Dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top