Question on FuseBox model

2000-04-18 Thread aslam bajaria

I am trying to learn the fusebox model. I have a
created a file called index.cfm.

That file has a switch statement. 

The question I have is that if I have a file that  has
a form, then how do I submit that form so that the
index.cfm file can include the right action page.

The only way I know so far is that I say something
like

...
But,
I think that in fusebox model you say:



 

 

and so on.

What code do I write in the form page that when the
user clicks 'Submit', a fuseaction value is passed to
the index.cfm page.

Thank you.
Mirza

__
Do You Yahoo!?
Send online invitations with Yahoo! Invites.
http://invites.yahoo.com
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Question on FuseBox model

2000-04-18 Thread Fred Sanders

Pass it as a hidden field.



...

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "aslam bajaria" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 18, 2000 7:50 PM
Subject: Question on FuseBox model


> I am trying to learn the fusebox model. I have a
> created a file called index.cfm.
>
> That file has a switch statement.
>
> The question I have is that if I have a file that  has
> a form, then how do I submit that form so that the
> index.cfm file can include the right action page.
>
> The only way I know so far is that I say something
> like
>
> ...
> But,
> I think that in fusebox model you say:
>
> 
>
>  
> 
>  
>
> and so on.
>
> What code do I write in the form page that when the
> user clicks 'Submit', a fuseaction value is passed to
> the index.cfm page.
>
> Thank you.
> Mirza
>
> __
> Do You Yahoo!?
> Send online invitations with Yahoo! Invites.
> http://invites.yahoo.com
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Question on FuseBox model

2000-04-18 Thread Pete Freitag

If your form method is post you can pass the fuseaction in the form action,
like this...





url.fuseaction
form.test
That way the fuseaction retains the url scoping, and a
 call is not required.

___
Pete Freitag
CFDEV.COM
Cold Fusion Developer Resources
http://www.cfdev.com/
-Original Message-
From: Fred Sanders [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 9:33 PM
To: [EMAIL PROTECTED]
Subject: Re: Question on FuseBox model


Pass it as a hidden field.



...

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "aslam bajaria" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 18, 2000 7:50 PM
Subject: Question on FuseBox model


> I am trying to learn the fusebox model. I have a
> created a file called index.cfm.
>
> That file has a switch statement.
>
> The question I have is that if I have a file that  has
> a form, then how do I submit that form so that the
> index.cfm file can include the right action page.
>
> The only way I know so far is that I say something
> like
>
> ...
> But,
> I think that in fusebox model you say:
>
> 
>
>  
> 
>  
>
> and so on.
>
> What code do I write in the form page that when the
> user clicks 'Submit', a fuseaction value is passed to
> the index.cfm page.
>
> Thank you.
> Mirza

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Question on FuseBox model ::: ? :::

2000-04-19 Thread Paul Ihrig

can some one explain to me what this is?
is it a way of keeping code predictable[i mean logical] & clean.
or is it an add on app for CF.

Is it worth learnning?
thanks
-paul

> -Original Message-
> From: Pete Freitag [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, April 18, 2000 10:54 PM
> To:   [EMAIL PROTECTED]
> Subject:      RE: Question on FuseBox model
> 
> If your form method is post you can pass the fuseaction in the form
> action,
> like this...
> 
> 
>   
> 
> 
> url.fuseaction
> form.test
> That way the fuseaction retains the url scoping, and a
>  call is not required.
> 
> ___
> Pete Freitag
> CFDEV.COM
> Cold Fusion Developer Resources
> http://www.cfdev.com/
> -Original Message-
> From: Fred Sanders [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 18, 2000 9:33 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Question on FuseBox model
> 
> 
> Pass it as a hidden field.
> 
> 
> 
> ...
> 
> Fred T. Sanders
> Galveston Island, TX
> --
> Having a bad day?
> Imagine this...
> 
> You are in total seclusion from that hectic place called "The World".
> The soothing sound of a gentle waterfall fills the air with a cascading
> serenity.
> The water is clear.
> You can easily make out the face of the person you are holding underwater.
> 
> Feeling better?
> 
> 
> ----- Original Message -
> From: "aslam bajaria" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, April 18, 2000 7:50 PM
> Subject: Question on FuseBox model
> 
> 
> > I am trying to learn the fusebox model. I have a
> > created a file called index.cfm.
> >
> > That file has a switch statement.
> >
> > The question I have is that if I have a file that  has
> > a form, then how do I submit that form so that the
> > index.cfm file can include the right action page.
> >
> > The only way I know so far is that I say something
> > like
> >
> > ...
> > But,
> > I think that in fusebox model you say:
> >
> > 
> >
> >  
> > 
> >  
> >
> > and so on.
> >
> > What code do I write in the form page that when the
> > user clicks 'Submit', a fuseaction value is passed to
> > the index.cfm page.
> >
> > Thank you.
> > Mirza
> 
> --
> 
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Question on FuseBox model ::: ? :::

2000-04-19 Thread Allen

easiest thing to do would be to check out www.fusebox.org

- Original Message -
From: "Paul Ihrig" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 19, 2000 7:20 AM
Subject: RE: Question on FuseBox model ::: ? :::


> can some one explain to me what this is?
> is it a way of keeping code predictable[i mean logical] & clean.
> or is it an add on app for CF.
>
> Is it worth learnning?
> thanks
> -paul
>
> > -Original Message-
> > From: Pete Freitag [SMTP:[EMAIL PROTECTED]]
> > Sent: Tuesday, April 18, 2000 10:54 PM
> > To: [EMAIL PROTECTED]
> > Subject: RE: Question on FuseBox model
> >
> > If your form method is post you can pass the fuseaction in the form
> > action,
> > like this...
> >
> > 
> > 
> > 
> >
> > url.fuseaction
> > form.test
> > That way the fuseaction retains the url scoping, and a
> >  call is not required.
> >
> > ___
> > Pete Freitag
> > CFDEV.COM
> > Cold Fusion Developer Resources
> > http://www.cfdev.com/
> > -Original Message-
> > From: Fred Sanders [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, April 18, 2000 9:33 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: Question on FuseBox model
> >
> >
> > Pass it as a hidden field.
> >
> > 
> > 
> > ...
> >
> > Fred T. Sanders
> > Galveston Island, TX
> > --
> > Having a bad day?
> > Imagine this...
> >
> > You are in total seclusion from that hectic place called "The World".
> > The soothing sound of a gentle waterfall fills the air with a cascading
> > serenity.
> > The water is clear.
> > You can easily make out the face of the person you are holding
underwater.
> >
> > Feeling better?
> >
> >
> > - Original Message -
> > From: "aslam bajaria" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, April 18, 2000 7:50 PM
> > Subject: Question on FuseBox model
> >
> >
> > > I am trying to learn the fusebox model. I have a
> > > created a file called index.cfm.
> > >
> > > That file has a switch statement.
> > >
> > > The question I have is that if I have a file that  has
> > > a form, then how do I submit that form so that the
> > > index.cfm file can include the right action page.
> > >
> > > The only way I know so far is that I say something
> > > like
> > >
> > > ...
> > > But,
> > > I think that in fusebox model you say:
> > >
> > > 
> > >
> > >  
> > > 
> > >  
> > >
> > > and so on.
> > >
> > > What code do I write in the form page that when the
> > > user clicks 'Submit', a fuseaction value is passed to
> > > the index.cfm page.
> > >
> > > Thank you.
> > > Mirza
> >
>
> --
> > 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Question on FuseBox model ::: ? :::

2000-04-19 Thread Aidan Whitehall

> easiest thing to do would be to check out www.fusebox.org

No disrespect to Steve Nelson, but I can't make head nor tail of what he's
written.

Is there anything else out there on fusebox... I appreciate it's importance
and would like to know more.




-- 
Aidan Whitehall <[EMAIL PROTECTED]>
Netshopper UK Ltd
Advanced Web Solutions & Services

http://www.netshopperuk.co.uk/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Question on FuseBox model ::: ? :::

2000-04-19 Thread Olive, Christopher M Mr USACHPPM

i'm afraind i'd have to agree.  i hear so much about the development model,
but the documentation on www.fusebox.org is practically unintelligible from
a development standpoint.  i've read it a few times, too.  

don't get me wrong.
a) i understand the PRINCIPLE of fusebox.  it's just the implementation
that's a little hazy to me.
b) mr. nelson is doing a HELL of a job.  designing an entire programming
methodology is a non-trivial task, and i heartily applaud any and all
efforts to standardize some coding.  as someone who has had to rip apart
some REALLY crappy code in the past, i very much understand a need for clear
methods (whether it be as simple as the One True Brace Style, up to and
including fusebox).

Chris Olive
DOHRS Website Administrator
[EMAIL PROTECTED]

(all offense reserved.)

-Original Message-
From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 19, 2000 8:32 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Question on FuseBox model ::: ? :::


> easiest thing to do would be to check out www.fusebox.org

No disrespect to Steve Nelson, but I can't make head nor tail of what he's
written.

Is there anything else out there on fusebox... I appreciate it's importance
and would like to know more.




-- 
Aidan Whitehall <[EMAIL PROTECTED]>
Netshopper UK Ltd
Advanced Web Solutions & Services

http://www.netshopperuk.co.uk/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Question on FuseBox model ::: ? :::

2000-04-19 Thread Greg Bray

There were some articles a few (6?) months ago in the CFDJ that explained
more about fusebox.  Maybe those will help clear some of it up.  I agree
that it takes a little bit of work to get through it initially.  Everyone
that I've tried to teach it to has struggled at first, but then once the
light bulb comes on, they all say, "why didn't I know about this before".

Really the best thing to do is to take apart some of the example
applications, then go back and read the articles again.  At least for me, it
wasn't until I tried to code something that it all really fell into place.

I certainly believe it is worth the effort to learn.

-greg



Greg Bray
eCalton.com, Inc.
http://www.ecalton.com
[EMAIL PROTECTED]


-Original Message-
From: Olive, Christopher M Mr USACHPPM
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 19, 2000 8:51 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Question on FuseBox model ::: ? :::


i'm afraind i'd have to agree.  i hear so much about the development model,
but the documentation on www.fusebox.org is practically unintelligible from
a development standpoint.  i've read it a few times, too.

don't get me wrong.
a) i understand the PRINCIPLE of fusebox.  it's just the implementation
that's a little hazy to me.
b) mr. nelson is doing a HELL of a job.  designing an entire programming
methodology is a non-trivial task, and i heartily applaud any and all
efforts to standardize some coding.  as someone who has had to rip apart
some REALLY crappy code in the past, i very much understand a need for clear
methods (whether it be as simple as the One True Brace Style, up to and
including fusebox).

Chris Olive
DOHRS Website Administrator
[EMAIL PROTECTED]

(all offense reserved.)

-Original Message-
From: Aidan Whitehall [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 19, 2000 8:32 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Question on FuseBox model ::: ? :::


> easiest thing to do would be to check out www.fusebox.org

No disrespect to Steve Nelson, but I can't make head nor tail of what he's
written.

Is there anything else out there on fusebox... I appreciate it's importance
and would like to know more.




--
Aidan Whitehall <[EMAIL PROTECTED]>
Netshopper UK Ltd
Advanced Web Solutions & Services

http://www.netshopperuk.co.uk/
Telephone +44 (01744) 648650
Fax +44 (01744) 648651

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Question on FuseBox model

2000-04-19 Thread Yvette Ingram

Mirza:

I'm not an expert, but on the form page, you can do something like this:

form.cfm

Any hidden values
blah, blah


Another way to do this would be:


any other hidden values
blah, blah


index.cfm










I'm sure there are more efficient and elegant ways to do this, like this
RFA's (Return Fuseactions), etc..

Hope this helps.

Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397


- Original Message -
From: aslam bajaria <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 18, 2000 8:50 PM
Subject: Question on FuseBox model


> I am trying to learn the fusebox model. I have a
> created a file called index.cfm.
>
> That file has a switch statement.
>
> The question I have is that if I have a file that  has
> a form, then how do I submit that form so that the
> index.cfm file can include the right action page.
>
> The only way I know so far is that I say something
> like
>
> ...
> But,
> I think that in fusebox model you say:
>
> 
>
>  
> 
>  
>
> and so on.
>
> What code do I write in the form page that when the
> user clicks 'Submit', a fuseaction value is passed to
> the index.cfm page.
>
> Thank you.
> Mirza
>
> __
> Do You Yahoo!?
> Send online invitations with Yahoo! Invites.
> http://invites.yahoo.com
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Question on FuseBox model

2000-04-19 Thread Yvette Ingram

Mirza:

Sorry, forgot to add the .cfm to thispage, thatpage, someotherpage.


Yvette Ingram
ColdFusion Programmer
HWG-TA, ColdFusion 4
Email: [EMAIL PROTECTED] or
[EMAIL PROTECTED]
ICQ:  21200397


- Original Message -
From: Yvette Ingram <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 19, 2000 9:19 AM
Subject: Re: Question on FuseBox model


> Mirza:
>
> I'm not an expert, but on the form page, you can do something like this:
>
> form.cfm
> 
> Any hidden values
> blah, blah
> 
>
> Another way to do this would be:
> 
> 
> any other hidden values
> blah, blah
> 
>
> index.cfm
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
> I'm sure there are more efficient and elegant ways to do this, like this
> RFA's (Return Fuseactions), etc..
>
> Hope this helps.
>
> Yvette Ingram
> ColdFusion Programmer
> HWG-TA, ColdFusion 4
> Email: [EMAIL PROTECTED] or
> [EMAIL PROTECTED]
> ICQ:  21200397
>
>
> ----- Original Message -
> From: aslam bajaria <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, April 18, 2000 8:50 PM
> Subject: Question on FuseBox model
>
>
> > I am trying to learn the fusebox model. I have a
> > created a file called index.cfm.
> >
> > That file has a switch statement.
> >
> > The question I have is that if I have a file that  has
> > a form, then how do I submit that form so that the
> > index.cfm file can include the right action page.
> >
> > The only way I know so far is that I say something
> > like
> >
> > ...
> > But,
> > I think that in fusebox model you say:
> >
> > 
> >
> >  
> > 
> >  
> >
> > and so on.
> >
> > What code do I write in the form page that when the
> > user clicks 'Submit', a fuseaction value is passed to
> > the index.cfm page.
> >
> > Thank you.
> > Mirza
> >
> > __
> > Do You Yahoo!?
> > Send online invitations with Yahoo! Invites.
> > http://invites.yahoo.com
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Question on FuseBox model ::: ? :::

2000-04-19 Thread Fred Sanders

> easiest thing to do would be to check out www.fusebox.org
>
Don't forget Hal's site: http://www.teamallaire.com/hal/

Quite a bit on Fusebox there as well.

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Allen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 19, 2000 7:20 AM
Subject: Re: Question on FuseBox model ::: ? :::


> easiest thing to do would be to check out www.fusebox.org
>
> - Original Message -
> From: "Paul Ihrig" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, April 19, 2000 7:20 AM
> Subject: RE: Question on FuseBox model ::: ? :::
>
>
> > can some one explain to me what this is?
> > is it a way of keeping code predictable[i mean logical] & clean.
> > or is it an add on app for CF.
> >
> > Is it worth learnning?
> > thanks
> > -paul
> >
> > > -Original Message-----
> > > From: Pete Freitag [SMTP:[EMAIL PROTECTED]]
> > > Sent: Tuesday, April 18, 2000 10:54 PM
> > > To: [EMAIL PROTECTED]
> > > Subject: RE: Question on FuseBox model
> > >
> > > If your form method is post you can pass the fuseaction in the form
> > > action,
> > > like this...
> > >
> > > 
> > > 
> > > 
> > >
> > > url.fuseaction
> > > form.test
> > > That way the fuseaction retains the url scoping, and a
> > >  call is not required.
> > >
> > > ___________
> > > Pete Freitag
> > > CFDEV.COM
> > > Cold Fusion Developer Resources
> > > http://www.cfdev.com/
> > > -Original Message-
> > > From: Fred Sanders [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, April 18, 2000 9:33 PM
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: Question on FuseBox model
> > >
> > >
> > > Pass it as a hidden field.
> > >
> > > 
> > > 
> > > ...
> > >
> > > Fred T. Sanders
> > > Galveston Island, TX
> > > --
> > > Having a bad day?
> > > Imagine this...
> > >
> > > You are in total seclusion from that hectic place called "The World".
> > > The soothing sound of a gentle waterfall fills the air with a
cascading
> > > serenity.
> > > The water is clear.
> > > You can easily make out the face of the person you are holding
> underwater.
> > >
> > > Feeling better?
> > >
> > >
> > > - Original Message -
> > > From: "aslam bajaria" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Tuesday, April 18, 2000 7:50 PM
> > > Subject: Question on FuseBox model
> > >
> > >
> > > > I am trying to learn the fusebox model. I have a
> > > > created a file called index.cfm.
> > > >
> > > > That file has a switch statement.
> > > >
> > > > The question I have is that if I have a file that  has
> > > > a form, then how do I submit that form so that the
> > > > index.cfm file can include the right action page.
> > > >
> > > > The only way I know so far is that I say something
> > > > like
> > > >
> > > > ...
> > > > But,
> > > > I think that in fusebox model you say:
> > > >
> > > > 
> > > >
> > > >  
> > > > 
> > > >  
> > > >
> > > > and so on.
> > > >
> > > > What code do I write in the form page that when the
> > > > user clicks 'Submit', a fuseaction value is passed to
> > > > the index.cfm page.
> > > >
> > > > Thank you.
> > > > Mirza
> > >
> >
>
> --
> > > 
> > > Archives: http://www.eGroups.com/list/cf-talk
> > > To Unsubscribe visit
> > >
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> > > the body.
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.