I too was having a problem understanding this at
first, but here is what you should do:

This was your old code:

<FRAMESET COLS="20%,80%">
<FRAME SRC="studentlist.cfm" NAME="StuList">

<FRAME SRC="dsp_StuSubjects.cfm?STUDENTID=0"
NAME="StuEdit">
</FRAMESET>
</HTML>

You want to point the user back to the index.cfm file
always, with different fuseactions as such:

<FRAMESET COLS="20%,80%">
<FRAME SRC="index.cfm?fuseaction=actstudentlist"
NAME="StuList">

<FRAME
SRC="index.cfm?fuseaction=dspStuSubjects&=#STUDENTID#"
NAME="StuEdit">
</FRAMESET>
</HTML>

Try this and if you get the hang of it check out the
following for more on frames and fusebox:

http://www.fusebox.org/Files/presentations/FuseboxandFrames.ppt

http://www.grokfusebox.com/downloads/Extended_Fusebox_101.doc


--- Janine Jakim <[EMAIL PROTECTED]> wrote:
> I am feeling very "thick skulled on this frame
> issue.  Maybe if someone can
> look at my code and say where the changes physically
> would be, etc it may
> help.
> In regular old fashion CF this is what I had on my
> frame page:
> 
> <FRAMESET COLS="20%,80%">
> <FRAME SRC="studentlist.cfm" NAME="StuList">
> 
> <FRAME SRC="dsp_StuSubjects.cfm?STUDENTID=0"
> NAME="StuEdit">
> </FRAMESET>
> </HTML>
> 
> MY 1st frame had the list of students and I used the
> following to target the
> center frame:
> 
> <A
> HREF="dsp_StudentSubjects.cfm?STUDENTID=#STUDENTID#"
> TARGET="StuEdit">#LNAME#, #FNAME#</A>
> </CFOUTPUT>
> 
> The main frame would display the appropriate student
> information to be
> updated....I keep getting error messages when I try
> to do this/variations of
> this in fb.  I can't get this link to show any
> specific student- I keep
> getting an error....I know it's something simple....
> 
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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