Skip to main content
Inspiring
May 15, 2007
Question

Templates and meta-tag URL

  • May 15, 2007
  • 1 reply
  • 301 views
I'm building a ColdFusion page off of a template; to cover non-javascript browsers (it's just a redirect) I have this:

<noscript><meta http-equiv="REFRESH" content="0;URL=../nojs.cfm"></noscript>

Now, from the Templates directory, the URL path is correct; however, when I create a page from this template, the path does NOT automatically update! Because it's in the non-editable region, I can't manually update the URL within a page. What do I need to do to get the URL parameter to update correctly within pages?
This topic has been closed for replies.

1 reply

Inspiring
May 15, 2007
I don't think this is going to work for you.

But here's what might -

1. Make the path a root relative one.
2. Make the javascript enabled browser get the redirection with a
document.write() statement, rather than the other way around.

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"pblecha" <webforumsuser@macromedia.com> wrote in message
news:f2cf9d$d0a$1@forums.macromedia.com...
> I'm building a ColdFusion page off of a template; to cover non-javascript
> browsers (it's just a redirect) I have this:
>
> <noscript><meta http-equiv="REFRESH"
> content="0;URL=../nojs.cfm"></noscript>
>
> Now, from the Templates directory, the URL path is correct; however, when
> I
> create a page from this template, the path does NOT automatically update!
> Because it's in the non-editable region, I can't manually update the URL
> within
> a page. What do I need to do to get the URL parameter to update correctly
> within pages?
>