Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > HTML > HTML Code Clinic
|
HTML Code Clinic Do you have some HTML code you'd like to share and get suggestions from others for tweaking or improving it? This discussion is the place.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the HTML Code Clinic section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 24th, 2006, 06:13 AM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default maintain document title throughout with frameset

Code:
<head>
<title>TEST</title>
</head>
<frameset cols="100%,*" border="0">
<frame src="v2/login.asp">
<noframes>
    <head></head>
    <body bgcolor="#ffffff" text="#000000" link="#000000" vlink="#000000" alink="#000000">
    <h1>
        NO FRAMES: In order to view this web site your browser must enable frames.
    </h1>
    </body>
</noframes>
</html>
I have this frameset setup in my webpages, however, when it loads 'login.asp' the title changes to 'Untitled Document' and then onto whatever title each document has after that. Is there a way to make 'TEST' (for example) the title for each page - without manually changing each page's <title> tag?

Thanks.

Picco

www.crmpicco.co.uk
www.ie7.com
__________________
_______________________
Ayrshire Minis - a Mini E-Community
http://www.ayrshireminis.com
http://www.crmpicco.co.uk
 
Old April 24th, 2006, 06:25 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 425
Thanks: 0
Thanked 3 Times in 3 Posts
Default

Are you sure the document is till framed then?

BTW you have two heads and some other peculiarities too.

--
http://yupapa.com
 
Old April 24th, 2006, 07:57 AM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default

is there a way to check do you know?
I have amended the code to the following:

Code:
<head>
<title>TEST</title>
</head>
<frameset cols="100%,*" border="0">
<frame src="v2/login.asp">
    <noframes>
        <body bgcolor="#ffffff" text="#000000" link="#000000" vlink="#000000" alink="#000000">
            NO FRAMES: In order to view this web site your browser must enable frames.
        </body>
    </noframes>
</html>

www.crmpicco.co.uk
www.ie7.com
 
Old April 24th, 2006, 07:58 AM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default

it still doesnt seem to work??

www.crmpicco.co.uk
www.ie7.com
 
Old April 24th, 2006, 08:10 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 425
Thanks: 0
Thanked 3 Times in 3 Posts
Default

View Source?

As usual, it's much more useful to post a URL than snippets of code that may or may not be relevant.

--
http://yupapa.com





Similar Threads
Thread Thread Starter Forum Replies Last Post
Use TABLE or FRAMESET??? OchirM HTML Code Clinic 1 January 2nd, 2008 11:46 AM
Element Frameset not supporte vj_mi ASP.NET 2.0 Basics 0 October 2nd, 2007 12:47 AM
Scrollbar for the frameset Jakob HTML Code Clinic 1 February 16th, 2007 10:44 PM
CSS and frameset capabilities paragon CSS Cascading Style Sheets 1 January 11th, 2006 02:08 PM
frameset zaman1111 JSP Basics 0 August 9th, 2005 04:27 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.