I'm using URLSessionFormat on all my internal links (even wrote a cf_a 
custom tag for it)... but I didn't have the need for a cf_frame tag just 
yet. I found out that the following code

<frame src="#URLSessionFormat('sidebar_top.cfm')#" name="top" 
frameborder="0" border="0" framespacing="0" scrolling="no" />

Makes Dreamweaver MX alert me of the fact that a page named 
"#URLSessionFormat('sidebar_top.cfm')#" not exixts. Well I know that :)

And the same again when you save. The page in question has 3 frames, so 
that's 3 pop-ups every time I hit ctrl-s... And that is quite annoying 
as you can imagine.

Does anyone know how I can by-pass this page exists check? Or how I can 
get Dreamweaver to check if the pages exist in the compiled cfm? Or just 
skip any urls that contain #-signs?

Jesse

------------------------------------------------------------------------
My code is as follows:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd";>

<html>
        <head>
                <title>Tweakers.net Sidebar</title>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                <script src="autoinstall.js" type="text/javascript" charset="UTF-8">
                </script>
                <script language="javascript1.2" type="text/javascript">
                        <cfoutput>Autoinstall("Tweakers.net Advanced", 
"#URLSessionFormat('http://toaom.student.utwente.nl/mozilla/sidebar/tweakersnetadv/sidebar.cfm')#",
 
"");</cfoutput>
                </script>
        </head>

        <frameset rows="43,*,35,35,45" id="TSBframe" frameborder="0" border="0" 
framespacing="0">
                <cfoutput>
                        <frame src="#URLSessionFormat('sidebar_top.cfm')#" name="top" 
frameborder="0" border="0" framespacing="0" scrolling="no" />
                        <frame src="#URLSessionFormat('dataviewer.cfm')#" 
name="dataviewer" 
frameborder="0" border="0" framespacing="0" scrolling="no"/>
                        <frame src="#URLSessionFormat('settings_panel.cfm')#" 
name="settings" 
frameborder="0" border="0" framespacing="0" scrolling="no" />
                        <frame src="search_panel.html" name="search" frameborder="0" 
border="0" framespacing="0" scrolling="no" />
                        <frame src="sidebar_bottom.html" name="bottom" frameborder="0" 
border="0" framespacing="0" scrolling="no" />
                </cfoutput>
        </frameset>
        <noframes>
                This is a Mozilla Sidebar. You need Mozilla or Netscape 6 or higher to 
view it.
        </noframes>
</html>


______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to