Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

HTML - Framesets ?

 
Thread Tools Search this Thread
Old 06-14-2006, 09:57 PM   #1
Default Framesets ?


Hi,

I have a web page where there are two frames. The left hand side frame
has a list. When a row in a list is clicked, the other frame's contents
need to be changed. The right hand frame needs to be a single html
page, so i imagine have to hide and unhide content somehow.

Thanks in advance,
vivekian



vivekaseeja@gmail.com
  Reply With Quote
Old 06-14-2006, 09:59 PM   #2
vivekaseeja@gmail.com
 
Posts: n/a
Default Re: Framesets ?

Forgot the question ..how do i do this ?

vivekase...@gmail.com wrote:
> Hi,
>
> I have a web page where there are two frames. The left hand side frame
> has a list. When a row in a list is clicked, the other frame's contents
> need to be changed. The right hand frame needs to be a single html
> page, so i imagine have to hide and unhide content somehow.
>
> Thanks in advance,
> vivekian


  Reply With Quote
Old 06-14-2006, 10:38 PM   #3
Michael Hedinger
 
Posts: n/a
Default Re: Framesets ?

schrieb:
> Forgot the question ..how do i do this ?
>
> vivekase...@gmail.com wrote:
>> Hi,
>>
>> I have a web page where there are two frames. The left hand side frame
>> has a list. When a row in a list is clicked, the other frame's contents
>> need to be changed. The right hand frame needs to be a single html
>> page, so i imagine have to hide and unhide content somehow.
>>
>> Thanks in advance,
>> vivekian

>


how do you do WHAT? are you asking about the linking that the correct
html site will appear in the right frame? that would be <a
href="rightframe.html" target="right"> in the frameset source you need
to define the right frame with <frame ..... name="right>"

or are you asking about PHP? that the right frame page is ONE .php file
which changes it's content when you click on a link on the left side?
  Reply With Quote
Old 06-14-2006, 10:38 PM   #4
tbar
 
Posts: n/a
Default Re: Framesets ?

Usually you add something like...

target="right_frame"

....to all the links in the left frame.


wrote:
> Forgot the question ..how do i do this ?
>
> vivekase...@gmail.com wrote:
>> Hi,
>>
>> I have a web page where there are two frames. The left hand side frame
>> has a list. When a row in a list is clicked, the other frame's contents
>> need to be changed. The right hand frame needs to be a single html
>> page, so i imagine have to hide and unhide content somehow.
>>
>> Thanks in advance,
>> vivekian

>

  Reply With Quote
Old 06-14-2006, 10:38 PM   #5
dorayme
 
Posts: n/a
Default Re: Framesets ?

In article
<. com>,
wrote:

> Hi,
>
> I have a web page where there are two frames. The left hand side frame
> has a list. When a row in a list is clicked, the other frame's contents
> need to be changed. The right hand frame needs to be a single html
> page, so i imagine have to hide and unhide content somehow.
>
> Thanks in advance,
> vivekian


The right hand side is a frame in which appear different html
pages. If there are links in the left frame, clicking one of them
can make a particular html page appear in the right frame. The
magic of frames you see...

As for hiding, it is part of the magic, a deep part. When a
particular html page is not being called, it sits patiently on
the server, a bit like a shy girl on a dance floor waitting for
someone to ask her to dance. By not being called, she is not
present on the dance floor.

How to do things with frames? Why not take a look at
http://wp.netscape.com/assist/net_sites/frames.html

But be bloody quick before spoilsports put you right off them...
or you will miss out on some genuinely good fun... they are hated
with a passion around here.

--
dorayme
  Reply With Quote
Old 06-15-2006, 05:50 AM   #6
Jeremy Brown
 
Posts: n/a
Default Re: Framesets ?

Try this for your home page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head >
<title>
My Site- Home.
</title>

<!--Begin Style and Script Configuration-->

<link rel="stylesheet" type="text/css" media="screen"
href="your_css_here.css" /> <!--Sets the style sheet-->
<link rel="shortcut icon" href="favicon.ico" /> <!--Sets the icon in the
address bar-->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<!--Sets your default character set-->
<meta http-equiv="Content-Script-Type" content="text/javascript" /> <!--Sets
the default scripting language-->

<!--End Style and Script Configuration-->

<meta name="Your name" content="Your Page- Home" />

</head >

<frameset border="0" cols="20%,*"> <!--Defines the frameset configuration,
in this case two columns-->
<frame id="navigation" src="nav-pane.html" title="Navigation Page"
scrolling="no" /> <!--the navigation pane is configured here-->
<frame id="content" src="home-pane.html" /> <!--the content pane is
configured here-->

<noframes> <!--Sets up no frames navigation-->
<body>
<a href="home-pane.html">
No frames version
</a>
</body>
</noframes>

</frameset>
</html>

Jeremy

--
Visit my Saab & me at:
http://jerem43.home.att.net


"dorayme" <> wrote in message
news:doraymeRidThis-...
> In article
> <. com>,
> wrote:
>
>> Hi,
>>
>> I have a web page where there are two frames. The left hand side frame
>> has a list. When a row in a list is clicked, the other frame's contents
>> need to be changed. The right hand frame needs to be a single html
>> page, so i imagine have to hide and unhide content somehow.
>>
>> Thanks in advance,
>> vivekian

>
> The right hand side is a frame in which appear different html
> pages. If there are links in the left frame, clicking one of them
> can make a particular html page appear in the right frame. The
> magic of frames you see...
>
> As for hiding, it is part of the magic, a deep part. When a
> particular html page is not being called, it sits patiently on
> the server, a bit like a shy girl on a dance floor waitting for
> someone to ask her to dance. By not being called, she is not
> present on the dance floor.
>
> How to do things with frames? Why not take a look at
> http://wp.netscape.com/assist/net_sites/frames.html
>
> But be bloody quick before spoilsports put you right off them...
> or you will miss out on some genuinely good fun... they are hated
> with a passion around here.
>
> --
> dorayme



  Reply With Quote
Old 06-15-2006, 09:29 AM   #7
Brian Cryer
 
Posts: n/a
Default Re: Framesets ?

<> wrote in message
news: ups.com...
> Hi,
>
> I have a web page where there are two frames. The left hand side frame
> has a list. When a row in a list is clicked, the other frame's contents
> need to be changed. The right hand frame needs to be a single html
> page, so i imagine have to hide and unhide content somehow.
>
> Thanks in advance,
> vivekian


If you use a frameset then be aware that some visitors will jump out of the
frameset - or be directed by search engines to pages that you would want
framed. One way round that is to include a link on each page to take you
back to your homepage - you don't want someone to arrive at a page but not
then be able to navigate to the rest of your site.
--
Brian Cryer
www.cryer.co.uk/brian


  Reply With Quote
Old 06-15-2006, 09:35 AM   #8
Paul Watt
 
Posts: n/a
Default Re: Framesets ?



http://www.paulwatt.info
"Brian Cryer" <> wrote in message
news:...
> <> wrote in message
> news: ups.com...
>> Hi,
>>
>> I have a web page where there are two frames. The left hand side frame
>> has a list. When a row in a list is clicked, the other frame's contents
>> need to be changed. The right hand frame needs to be a single html
>> page, so i imagine have to hide and unhide content somehow.
>>
>> Thanks in advance,
>> vivekian

>
> If you use a frameset then be aware that some visitors will jump out of
> the frameset - or be directed by search engines to pages that you would
> want framed. One way round that is to include a link on each page to take
> you back to your homepage - you don't want someone to arrive at a page but
> not then be able to navigate to the rest of your site.
> --
> Brian Cryer
> www.cryer.co.uk/brian
>
>


Trying to resist, resist,resist.
FRAMES ARE EVIL!
Couldn't resist in the end.
--
Cheers

Paul


  Reply With Quote
Old 06-15-2006, 10:01 AM   #9
Brian Cryer
 
Posts: n/a
Default Re: Framesets ?

"Paul Watt" <> wrote in message
news:...
<snip>
> Trying to resist, resist,resist.
> FRAMES ARE EVIL!
> Couldn't resist in the end.


Not sure about "evil" - but I certainly try to avoid them.
--
Brian Cryer
www.cryer.co.uk/brian


  Reply With Quote
Old 06-15-2006, 02:33 PM   #10
vivekaseeja@gmail.com
 
Posts: n/a
Default Re: Framesets ?


Michael Hedinger wrote:

> how do you do WHAT? are you asking about the linking that the correct
> html site will appear in the right frame? that would be <a
> href="rightframe.html" target="right"> in the frameset source you need
> to define the right frame with <frame ..... name="right>"


Think i messed up my question. My apoligies. The right hand side has to
be a single html page which will show different html content depending
upon what has been clicked on the left hand side. The problem is that
all the html content has to be a single html page. So i imagine the
content would have to be hidden or unhidden depending upon what is
clicked on the left hand side. How can i do that -- that is hide and
unhide ?

thanks ..
vivekian

  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump