473,396 Members | 1,945 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,396 software developers and data experts.

iframes and redirection

hi fellow web developers!

I have a bit of a concern. I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe. My concern is that if search engines can only read the body
content on the body.html

So... I want to write something for these body.htmls so that if the
person clicks through a search engine link to go directly to the
body.html page, they instead will be redirected to the main.html page
- which contains the expected header, body.html, and footer iframes.

is there a way to do this? Any ideas?
Sep 8 '08 #1
13 1434
On Mon, 8 Sep 2008, tr************@gmail.com wrote:
I have a bit of a concern. I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe.
Any ideas?
Don't use frames.
Don't use iframes.

--
In memoriam Alan J. Flavell
http://www.alanflavell.org.uk/charset/
Sep 8 '08 #2
On Sep 8, 12:34*pm, Andreas Prilop <prilop4...@trashmail.netwrote:
On Mon, 8 Sep 2008, trfilmograp...@gmail.com wrote:
I have a bit of a concern. *I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe.
Any ideas?

Don't use frames.
Don't use iframes.
I didn't. Sadly I hired someone to redo my site that did. So now Im
trying to make the best of the situation without redoing the entire
site
Sep 8 '08 #3
Gazing into my crystal ball I observed ad***********@gmail.com writing
in news:4d4b108a-1e8f-481f-adae-
66**********@n33g2000pri.googlegroups.com:
On Sep 8, 12:34*pm, Andreas Prilop <prilop4...@trashmail.netwrote:
>On Mon, 8 Sep 2008, trfilmograp...@gmail.com wrote:
I have a bit of a concern. *I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a
footer
iframe.
Any ideas?

Don't use frames.
Don't use iframes.

I didn't. Sadly I hired someone to redo my site that did. So now Im
trying to make the best of the situation without redoing the entire
site
A redo isn't going to be that bad if you use includes and search and
replace.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Sep 8 '08 #4
Andreas Prilop wrote:
On Mon, 8 Sep 2008, tr************@gmail.com wrote:
>I have a bit of a concern. I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe.
Any ideas?

Don't use frames.
Don't use iframes.
Why not? I want to use a frame to display on the home page
a half dozen text lines from a file that is generated automaticly,
but I don't want to regenerate the home page so frequently.
Sep 8 '08 #5
Gazing into my crystal ball I observed Rick Merrill
<ri***********@gmail.comwriting in news:Y_ednVJ-
qc**********************@comcast.com:
Andreas Prilop wrote:
>On Mon, 8 Sep 2008, tr************@gmail.com wrote:
>>I have a bit of a concern. I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a
footer
>>iframe.
Any ideas?

Don't use frames.
Don't use iframes.

Why not? I want to use a frame to display on the home page
a half dozen text lines from a file that is generated automaticly,
but I don't want to regenerate the home page so frequently.
Use a server side include.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Sep 8 '08 #6
In article
<ee**********************************@t1g2000pra.g ooglegroups.com>,
tr************@gmail.com wrote:
hi fellow web developers!

I have a bit of a concern. I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe. My concern is that if search engines can only read the body
content on the body.html

So... I want to write something for these body.htmls so that if the
person clicks through a search engine link to go directly to the
body.html page, they instead will be redirected to the main.html page
- which contains the expected header, body.html, and footer iframes.

is there a way to do this? Any ideas?
If you irresistibly want to use frames, read:

<http://www.markparnell.com.au/articles/frames.php>

Make sure that if a search engine finds a frame all on its lonesome,
that frame has a device in it to alert the user to go to the frameset
page which is its true home.

You would be surprised to know how many lost frames can turn up on the
internet. I run a small not-for-profit agency that takes them in and we
look for their siblings and proper home and try as best as we can to
reunite them all. Many of them are in extremely depressed states. sad.

But there are some frames that are perfectly happy - we don't take these
in - because they were "only-children". That is, they never really
needed to be in a frameset in the first place.

Anyway, if you find any of this advice helpful, you might like toshow
your appreciation by donating to the refuge I run. $US only please.

--
dorayme
Sep 8 '08 #7
dorayme wrote:
In article
<ee**********************************@t1g2000pra.g ooglegroups.com>,
tr************@gmail.com wrote:
>hi fellow web developers!

I have a bit of a concern. I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe. My concern is that if search engines can only read the body
content on the body.html

So... I want to write something for these body.htmls so that if the
person clicks through a search engine link to go directly to the
body.html page, they instead will be redirected to the main.html page
- which contains the expected header, body.html, and footer iframes.

is there a way to do this? Any ideas?

If you irresistibly want to use frames, read:

<http://www.markparnell.com.au/articles/frames.php>

Hmmm,

"Separate frameset for every page One of the major problems with frames
is that your visitors cannot bookmark a particular page on your site.
They have to bookmark the home page, and then every time they come back,
try and find their way through your menus to the page they actually want
- if they can even remember which page it was."

Eh? Won't that just defeat the only "virtue" of frames, by making you
recreate all the "static" parts of the page? You might as well just do
static, frameless pages.

With SSI|PHP so ubiquitous and cheap there is very little need for
frames. With the hopeful death of IE6 (and maybe 7 too) even less need
for frames.

BTW, where has Mark been these days...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Sep 9 '08 #8
On 8 Sep, 17:48, adam.ornst...@gmail.com wrote:
Don't use frames.
Don't use iframes.

I didn't. *Sadly I hired someone to redo my site that did. *So now Im
trying to make the best of the situation without redoing the entire
site
Don't use frames.
Don't use iframes.
Don't use people who use frames.
Redo.
Sep 9 '08 #9
ad***********@gmail.com writes:
On Sep 8, 12:34*pm, Andreas Prilop <prilop4...@trashmail.netwrote:
>On Mon, 8 Sep 2008, trfilmograp...@gmail.com wrote:
I have a bit of a concern. *I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe.
Any ideas?

Don't use frames.
Don't use iframes.

I didn't. Sadly I hired someone to redo my site that did. So now Im
trying to make the best of the situation without redoing the entire
site
I hope you've at least withheld payment, and will be suing them for
the cost of cleaning up his or her mess. Someone who claims to be a
pro and charges for their work, should be held accountable when they
deliver a shoddy product.

You did have a contract, right? And the contract did specify that the
work would be done according to standard best practices, right?

sherm--

--
My blog: http://shermspace.blogspot.com
Cocoa programming in Perl: http://camelbones.sourceforge.net
Sep 9 '08 #10
In comp.infosystems.www.authoring.html message <doraymeRidThis-
63*******************@web.aioe.org>, Tue, 9 Sep 2008 08:41:36, dorayme
<do************@optusnet.com.auposted:
>
Make sure that if a search engine finds a frame all on its lonesome,
that frame has a device in it to alert the user to go to the frameset
page which is its true home.
But the frameset page is not necessarily a sole true home. A site can
be constructed to be workable entirely without frames, including the
entry page, but to allow adding of frames for those (probably with large
screens) who want them.

Example : <http://www.merlyn.demon.co.uk/frames-4.htm?dm034-24.htm>

--
(c) John Stockton, nr London, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME.
Web <URL:http://www.merlyn.demon.co.uk/- FAQish topics, acronyms, & links.
Proper <= 4-line sig. separator as above, a line exactly "-- " (SonOfRFC1036)
Do not Mail News to me. Before a reply, quote with ">" or "" (SonOfRFC1036)
Sep 10 '08 #11
In article <$D**************@invalid.uk.co.demon.merlyn.inval id>,
Dr J R Stockton <jr*@merlyn.demon.co.ukwrote:
In comp.infosystems.www.authoring.html message <doraymeRidThis-
63*******************@web.aioe.org>, Tue, 9 Sep 2008 08:41:36, dorayme
<do************@optusnet.com.auposted:

Make sure that if a search engine finds a frame all on its lonesome,
that frame has a device in it to alert the user to go to the frameset
page which is its true home.

But the frameset page is not necessarily a sole true home. A site can
be constructed to be workable entirely without frames, including the
entry page, but to allow adding of frames for those (probably with large
screens) who want them.

Example : <http://www.merlyn.demon.co.uk/frames-4.htm?dm034-24.htm>
I have no disagreement here. A reality check though: anyone who makes a
framed site these days is quite unlikely to get this complex. The
simplest thing anyone can do in a framed site is make sure there is a
link back to the home page in each frame or at least a link to a
frameset that contains it along with general site navigation.

--
dorayme
Sep 11 '08 #12
dorayme wrote:
In article
<ee**********************************@t1g2000pra.g ooglegroups.com>,
tr************@gmail.com wrote:
>hi fellow web developers!

I have a bit of a concern. I developed a main page that is a page
that contains 3 iframes - a header iframe, a body iframe, and a footer
iframe. My concern is that if search engines can only read the body
content on the body.html

So... I want to write something for these body.htmls so that if the
person clicks through a search engine link to go directly to the
body.html page, they instead will be redirected to the main.html page
- which contains the expected header, body.html, and footer iframes.

is there a way to do this? Any ideas?

If you irresistibly want to use frames, read:

<http://www.markparnell.com.au/articles/frames.php>
Yes, I still want to use frame because I do not want the content
indexed/googled and it will not display a bookmarkable URL.

Make sure that if a search engine finds a frame all on its lonesome,
that frame has a device in it to alert the user to go to the frameset
page which is its true home.

You would be surprised to know how many lost frames can turn up on the
internet. I run a small not-for-profit agency that takes them in and we
look for their siblings and proper home and try as best as we can to
reunite them all. Many of them are in extremely depressed states. sad.

But there are some frames that are perfectly happy - we don't take these
in - because they were "only-children". That is, they never really
needed to be in a frameset in the first place.

Anyway, if you find any of this advice helpful, you might like toshow
your appreciation by donating to the refuge I run. $US only please.
Sep 12 '08 #13
I didn't. Sadly I hired someone

Frames are bad for search engines for one. Better to
use server-side includes or some server side language.
--
best regards
Thomas Schulz :: A1 Sitemap Generator
http://www.micro-sys.dk/products/sitemap-generator/
Sep 18 '08 #14

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

Similar topics

10
by: maxim vexler | last post by:
I'm reading a lot of talks lately about the term iFrame and with your permission would like to ask a few question about that : - what is iFrame, i mean what is it good for ? - does all the...
0
by: Dan Popa | last post by:
Check out the following 2 links: http://www.batisdev.com/admin/test_1images.asp http://www.batisdev.com/admin/test_2images.asp First page contain 4 IFRAMES and 1 IMG tags. Second page contain 4...
5
by: Frances | last post by:
I need to replace iframes acc. to what option user chooses in a sel obj.. but figured have to load a blank iframe when pg loads so I can replace it.. (iframe gets put in a pre-existing div..) this...
2
by: Guadala Harry | last post by:
1. Are IFrames supported only in uplevel versions of IE? If not IE exclusively, what browsers support IFrames? 2. Are IFrames going to be supported in the future - as far as anyone knows - or...
3
by: Giggle Girl | last post by:
Is there a way to use Javascript to detect if a browser supports IFrames, or (if it DOES support them) that IFrame use is enabled? Thanks, Ann
7
by: Shelly | last post by:
I have a submit button and in the php code I have header("Location: thetargetpage.php"); I do the DB work and php and my daughter does the pretty work. She put my page inside an iframe. So,...
13
by: souissipro | last post by:
Hi, I have written a C program that does some of the functionalities mentionned in my previous topic posted some days ago. This shell should: 1- execute input commands from standard input,...
19
by: wmanzo | last post by:
I have a really professional conspiracy movie site and I use tons of layers and an external scroll bar assembly. I would like to put the various sections into MS Iframes and in order to clean up...
2
by: ericisjusteric | last post by:
I have a page with multiple iframes and need to have the user (ie6) be able to click a button to refresh any one of the iframes - but also to click another button at the top of the page to refresh...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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,...

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.