Anyone that can explain this would help out
tremendously.

I have a fusebox app that is pretty simple.  It is
basically a bunch of add/update forms.  The issue is
the home fuse is a simple menu at the top of the page,
once a user clicks on Add or Update, etc. they are
then sent to a frameset with left navigation and the
form on the right with record navigation above. I am
using the following code for my index fuse:

<CFCASE value="dsp_AddUpdate">
        <!--- This checks to see if the user is running an
update or insert query and sets the switch variable
--->
                <CFIF attributes.CaseID is 0>
                        <CFSET NewCase = "Yes">
                <CFELSE>
                        <CFSET NewCase = "No">
                </CFIF>
        <!--- Need to pass in caseID and then check which
query to run --->
        <CFIF NewCase IS "No">
                <CFINCLUDE template="qry_PullUpdateBCI.cfm">
        <CFELSE>
                <CFINCLUDE template="qry_PopulateBCI.cfm">
        </CFIF>
        <!--- Includes the frameset which displays form (add
or update) --->
                <CFINCLUDE template="act_frameset.cfm">
        </CFCASE>

The problem is my frameset runs (I put in a debug line
at the top which shows), but none of my display pages
appear.  The code for the frameset is below:

the frameset is running
<frameset cols="185,913*" frameborder="YES" border="2"
framespacing="2" rows="*" bordercolor="#666666"> 
  <frame name="leftFrame" scrolling="NO" noresize
src="EntryMenu.cfm">
  <frame name="midFrame" src="dsp_AddUpdateBCI.cfm">
</frameset>
<noframes> 
<body bgcolor="#FFFFFF">
</body>
</noframes> 
</html>

=====
Andrew Middleton

"Consistency is contrary to nature, contrary to life.  The 
only completely consistent people are the dead." 
--Aldous Huxley

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/

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

Reply via email to