HTML Help Forum Index HTML Help
Please Search for the answer to your question before asking it! Thanks.
 

Frame Problem
Post a Reply to this Topic Ask a New Question
Click here to go to the original topic
       HTML Help Forum Index -> HTML Frame
View previous topic :: View next topic  
Author Message
somu_siva03



Joined: 01 May 2009
Posts: 2

Posted: Sun May 03, 2009 10:07 pm     Frame Problem  

I got a frame concept which has source of a JSP page as shown below :


Code:
<html>

<frameset cols="100%">

    <frame src="http://localhost:8080/full/index.jsp">

</frameset>

</html>

My JSP Page further contains frame concept.
Which has two .jsp source pages.

Normally html files are shown but .jsp files is not working for me .
Let me know how to rectify this problem


Corey Bryant



Joined: 15 May 2004
Posts: 8749
Location: Castle Pines North, CO USA

Posted: Mon May 04, 2009 4:20 am      

If you just bring up a jsp page in a browser - without frames, does that work?

_________________
Corey
Virtual Office Solutions | Processing Credit Cards | Microsoft Expression Web Blog
somu_siva03



Joined: 01 May 2009
Posts: 2

Posted: Mon May 04, 2009 10:03 pm     Re : Frame Problem  

Yeah , the jsp pages were working fine.
Corey Bryant



Joined: 15 May 2004
Posts: 8749
Location: Castle Pines North, CO USA

Posted: Tue May 05, 2009 3:54 am      

OK just making sure since you said JSP pages were not working -I did not know exactly how they were not working.

Try
Code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<html>


<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 2</title>
</head>

<frameset cols="100%">
   <frame name="main" src="http://localhost:8080/full/index.jsp">
   <noframes>
   <body>

   <p>This page uses frames, but your browser doesn't support them.</p>

   </body>
   </noframes>
</frameset>

</html>

I would also have to say - consider a way to develop your site not using frames. Building a Site with Frames will show you numerous problems with frames.

_________________
Corey
Toll Free Solutions | Mile High Merchant Accounts | Expression Web Blog
 
 
DARFUR
HOSTING / DESIGN
MAKE MONEY

       HTML Help Forum Index -> HTML Frame
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.19 © 2001, 2002 phpBB Group