> i want to be able to dynamically set page titles withing a framed
> fusebox. I
> don't mean something that goes in the <title> tag. I just want to
> display a
> valued passed from the index.cfm in my top frame.

Sounds like you need something like this, either in your dsp_ or header.cfm:

<script>
        function updateFrame() {
        <cfif Len(request.page.name)>
        <cfoutput>
        window.parent.frames.myframe.location.href =
'http://mydomain.com/index.cfm?fuseaction=myaction&title=#request.page.name#
';
        </cfoutput>
        </cfif>
        }
</script>

<body onload="updateFrame();">


--
Roger


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to