473,587 Members | 2,550 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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.popped Layer ? 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 1376
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.popped Layer ? 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.popped Layer ? 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.co m> wrote in message
news:MH******** ***********@new sread1.news.atl .earthlink.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.popped Layer ? 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.ht m" (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.ht m">Page 2</a> |
<a href="frame3.ht m">Page 3</a> |
<a href="frame4.ht m">Page 4</a> |
<a href="frame5.ht m">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.co m> wrote in message
news:MH******** ***********@new sread1.news.atl .earthlink.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.ht m" (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.ht m">Page 2</a> |
<a href="frame3.ht m">Page 3</a> |
<a href="frame4.ht m">Page 4</a> |
<a href="frame5.ht m">Page 5</a>

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

Jul 20 '05 #5
"Ike" <rx*@hotmail.co m> wrote in message
news:_5******** ******@newsread 1.news.atl.eart hlink.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.co m> wrote in message
news:_5******** ******@newsread 1.news.atl.eart hlink.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@attb i_s53...
"Ike" <rx*@hotmail.co m> wrote in message
news:_5******** ******@newsread 1.news.atl.eart hlink.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
3146
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 (which not suprisingly should generate HTML output, and it does) 3) And the "error_log" output from the "server error" I get when I run it by typing...
2
2097
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 http://www.ammon-web.de/jost/alt/test/lmp-2.html The idea is that I can have an independent navebar that I need not change at the top of each screen,...
7
10900
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
24609
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 the html. The following return the correct values in IE6, where the iframe's id is 'f': f.document.body.scrollHeight f.document.body.scrollTop...
4
6279
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" marginheight="0" marginwidth="0"> <frame name="topFrame" scrolling="auto" src="top.asp" bordercolor="#cccc66" frameborder="yes" topmargin="0" leftmargin="0"...
12
1776
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 getElementById("name").innerText. I need to do it dynamically though, so is there anyway I can look at the object returned by getElementById() and determine...
15
20541
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 name="textarea" cols=80 rows=18> This is a test </textarea><br>
7
4495
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 solution. I seriously doubt that it can be achieved without breaking the layout. Do you think it's possible at all? You seem to have the expertise to...
2
2929
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 frame2.php (normally login / pass here but //removed unesecery code) just to show example
0
8215
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8220
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6626
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5718
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3844
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3879
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2358
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1454
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1189
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.