473,387 Members | 1,529 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

getting away from frames

Ike
I have a set of pages that are loaded from a navigation frame. In short, my
page has a frame with 5 links on it, that load one of 5 pages in the other
frame.

I need to get away from this. Mostly because there is interactive content
(applets, etc.) running some of those 5 pages, and when the user returns to
that page, via a link in the navigation frame, the page reloads, and
everything must be started anew for that page.

Does anyone have any ideas how I can accomplis this, without much altering
the look of what I am doing? Could I perhaps accomodate that with something
along the lines of document.poppedLayer ? Would that require that I merge
all 5 pages into 1 ? Does anyone have any good ideas how I can accomplish
getting rid of these frames such that all 5 pages can be 'running'
simultaneously, and just a click away for the user?

Thank you for your thoughts, Ike
Jul 20 '05 #1
7 1362
Ike wrote:
I have a set of pages that are loaded from a navigation frame. In short,
my page has a frame with 5 links on it, that load one of 5 pages in the
other frame. I need to get away from this. Mostly because there is interactive content
(applets, etc.) running some of those 5 pages, and when the user returns
to that page, via a link in the navigation frame, the page reloads, and
everything must be started anew for that page. Does anyone have any ideas how I can accomplis this, without much
altering the look of what I am doing? Could I perhaps accomodate that
with something along the lines of document.poppedLayer ? Would that
require that I merge all 5 pages into 1 ? Does anyone have any good ideas
how I can accomplish getting rid of these frames such that all 5 pages
can be 'running' simultaneously, and just a click away for the user? Thank you for your thoughts, Ike


Time to learn about the CSS world.
What you want to do can easily be done with CSS and divisions.
You can have all of your formerly framed pages all on one page and show only
what you need according to the link.
Thus your applets will run concurrently in the background as needed.
Jul 20 '05 #2

"Richard" <an*******@127.000> wrote in message
news:c0********@enews1.newsguy.com...
Ike wrote:
> I have a set of pages that are loaded from a navigation frame. In short, > my page has a frame with 5 links on it, that load one of 5 pages in the
> other frame.
> I need to get away from this. Mostly because there is interactive content > (applets, etc.) running some of those 5 pages, and when the user returns > to that page, via a link in the navigation frame, the page reloads, and
> everything must be started anew for that page.

> Does anyone have any ideas how I can accomplis this, without much
> altering the look of what I am doing? Could I perhaps accomodate that
> with something along the lines of document.poppedLayer ? Would that
> require that I merge all 5 pages into 1 ? Does anyone have any good ideas > how I can accomplish getting rid of these frames such that all 5 pages
> can be 'running' simultaneously, and just a click away for the user?

> Thank you for your thoughts, Ike


Time to learn about the CSS world.
What you want to do can easily be done with CSS and divisions.
You can have all of your formerly framed pages all on one page and show

only what you need according to the link.
Thus your applets will run concurrently in the background as needed.


I have to be honest, I think that most applets look much worse than Flash
etc...

The other thing to look at is Includes (serverside includes) but for that
you will need ASP / PHP / SHTML or something similair...

Gerry
Jul 20 '05 #3
"Ike" <rx*@hotmail.com> wrote in message
news:MH*******************@newsread1.news.atl.eart hlink.net...
I have a set of pages that are loaded from a navigation frame. In short, my page has a frame with 5 links on it, that load one of 5 pages in the other
frame.

I need to get away from this. Mostly because there is interactive content
(applets, etc.) running some of those 5 pages, and when the user returns to that page, via a link in the navigation frame, the page reloads, and
everything must be started anew for that page.

Does anyone have any ideas how I can accomplis this, without much altering
the look of what I am doing? Could I perhaps accomodate that with something along the lines of document.poppedLayer ? Would that require that I merge
all 5 pages into 1 ? Does anyone have any good ideas how I can accomplish
getting rid of these frames such that all 5 pages can be 'running'
simultaneously, and just a click away for the user?

Thank you for your thoughts, Ike

Identify each of the frame pages;
perhaps they're something like:
index.htm
frame1.htm
frame2.htm
frame3.htm
frame4.htm
frame5.htm
where "index.htm" is the frameset.

Just rename "index.htm" to "index_frame.htm" (i.e. obsolete)
and "frame1.htm" to "index.htm"
then add the following to the bottom of each page:

<a href="index.htm">Home</a> |
<a href="frame2.htm">Page 2</a> |
<a href="frame3.htm">Page 3</a> |
<a href="frame4.htm">Page 4</a> |
<a href="frame5.htm">Page 5</a>

Of course the names and labels will change but you get the idea.
Jul 20 '05 #4
Ike
I dont think this keeps all five pages resident though throughout the life
of the session, does it? Ike

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:MdiWb.2325$jk2.9981@attbi_s53...
"Ike" <rx*@hotmail.com> wrote in message
news:MH*******************@newsread1.news.atl.eart hlink.net...

Identify each of the frame pages;
perhaps they're something like:
index.htm
frame1.htm
frame2.htm
frame3.htm
frame4.htm
frame5.htm
where "index.htm" is the frameset.

Just rename "index.htm" to "index_frame.htm" (i.e. obsolete)
and "frame1.htm" to "index.htm"
then add the following to the bottom of each page:

<a href="index.htm">Home</a> |
<a href="frame2.htm">Page 2</a> |
<a href="frame3.htm">Page 3</a> |
<a href="frame4.htm">Page 4</a> |
<a href="frame5.htm">Page 5</a>

Of course the names and labels will change but you get the idea.

Jul 20 '05 #5
"Ike" <rx*@hotmail.com> wrote in message
news:_5**************@newsread1.news.atl.earthlink .net...
I dont think this keeps all five pages resident though throughout the life
of the session, does it? Ike

Is the frames version available for review so we can "see" the issues?

My "solution" just focused on eliminating frames not maintaining state;
sorry.
Jul 20 '05 #6
"Ike" <rx*@hotmail.com> wrote in message
news:_5**************@newsread1.news.atl.earthlink .net...
I dont think this keeps all five pages resident though throughout the life
of the session, does it? Ike

Is the frames version available for review so we can "see" the issues?

My "solution" just focused on eliminating frames not maintaining state;
sorry.

Jul 20 '05 #7
Ike
yes, but it would require a login unfortunately, and I dont have
authroization on that. I think I have to stick with frames though,
regardless, as some of the frames, which are really php pages, use forms,
and call other pages. I dont see any way of recobbling this to use divs and
css.

Now...if I can resize frames on the fly, Ive got this licked. -Ike

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:NxqWb.5577$jk2.18585@attbi_s53...
"Ike" <rx*@hotmail.com> wrote in message
news:_5**************@newsread1.news.atl.earthlink .net...
I dont think this keeps all five pages resident though throughout the life of the session, does it? Ike

Is the frames version available for review so we can "see" the issues?

My "solution" just focused on eliminating frames not maintaining state;
sorry.

Jul 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: John Draper | last post by:
I am having a lot of problems trying to get a Python CGI to run. I have included 3 parts... 1) A simple stripped down python module. 2) An output of what I get when I do: python index.py...
2
by: Jost Ammon | last post by:
Hi, I wonder why I can't get rid of a blank space between two frames: http://www.ammon-web.de/jost/alt/test/frame1.html consists of http://www.ammon-web.de/jost/alt/test/navebar.html and...
7
by: Lorenzo Vaina | last post by:
Can i get the content of an URL and put it in a variable using javascript? I want js execute different operations varying a file that is on internet. Thanks, regards.
1
by: Martin | last post by:
There seems to be some strange behaviour when trying to get the scrollHeight and scrollTop of an iframe in IE6. I have tried several ways of getting these values when the iframe is written into...
4
by: JJ | last post by:
I'm working with a web site that has frames defined as: <frameset rows="60,*" frameborder="yes" border="0" framespacing="0" cols="*" bordercolor="#eeeeee" topmargin="0" leftmargin="0"...
12
by: Adam Lipscombe | last post by:
Folks, I need to get the contents of a form attribute. In Read/Write mode this is field, so I can use getElementById("name").value In ReadOnly this is just plain text, so I can use...
15
by: Aaron Gray | last post by:
<iframe name="iframe" width="100%" height="25%" src="test1.txt"> </iframe> <a href="test1.txt" target="input">one</a> <a href="test2.txt" target="input">two</a> <form name="form1"> <textarea...
7
by: Marcel Stör | last post by:
I want to overhaul http://www.s-tisch.ch/. The layout is fine IMHO and I need to keep it that way. The implementation, however, is totally ugly. I intend to replace all frames with a CSS-based...
2
by: panos100m | last post by:
Hi there I am using a menu frame on the left side but i cant destroy it using the logout link that i created ... any ideas? //index.php // PAGE this will just redirect to the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.