cfschedule tag problem.

2005-08-15 Thread Jeff W
I have an issue running a cfschedule tag in my code.

This is what I run
CFSCHEDULE ACTION=Run TASK=#Trim(TaskName)#

The taskname variable is the exact name of the task I want to run.

I get this error. 500 Internal Server Error NULL

Is this an IIS security setting or something else??

Thanks..
Jeff


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214971
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfschedule tag problem.

2005-08-15 Thread Jeff W
I put it in a Try/Catch
These were the cfcatch variables I got back..

message=500 Internal Server Error 
type =coldfusion.server.ServiceException 

Odd thing is it appears that the task ran, but just errored at the end

Weird.. Anyone with ideas?

Jeff

On 8/15/05, Micha Schopman [EMAIL PROTECTED] wrote:
 
 Jeff,
 
 You might try disabling friendly error messages to get a more useful
 message from IE. You'll find it in the IE options dialog.
 
 Micha Schopman
 Project Manager
 
 Modern Media, Databankweg 12 M, 3821 AL Amersfoort
 Tel 033-4535377, Fax 033-4535388
 KvK Amersfoort 39081679, Rabo 39.48.05.380
 
 
 
 -
 Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
 de interactie met uw doelgroep.
 Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
 informatie zie www.modernmedia.nl http://www.modernmedia.nl
 
 
 -
 -Original Message-
 From: Jeff W [mailto:[EMAIL PROTECTED]
 Sent: maandag 15 augustus 2005 15:03
 To: CF-Talk
 Subject: cfschedule tag problem.
 
 I have an issue running a cfschedule tag in my code.
 
 This is what I run
 CFSCHEDULE ACTION=Run TASK=#Trim(TaskName)#
 
 The taskname variable is the exact name of the task I want to run.
 
 I get this error. 500 Internal Server Error NULL
 
 Is this an IIS security setting or something else??
 
 Thanks..
 Jeff
 
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214981
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: Javascript browser compatibility question.

2005-08-11 Thread Jeff W
Can anyone tell me WHY this won't work in NS6.1 but work fine in ie5-6, 
firefox and NS8??

document.getElementById(CurrentHighlightedCell).style.background='#006600';

CurrentHighlightedCell is a variable that contains the current id of the 
TD background color I am changing. 

Thanks..
Jeff


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214583
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Javascript browser compatibility question.

2005-08-11 Thread Jeff W
Its a variable..

On 8/11/05, Jim Campbell [EMAIL PROTECTED] wrote:
 
 Does it matter if you put the element ID in quotes?
 
 getElementById(CurrentHighlightedCell)...
 
 - Jim
 
 Jeff W wrote:
 
 Can anyone tell me WHY this won't work in NS6.1 but work fine in ie5-6,
 firefox and NS8??
 
 document.getElementById
 (CurrentHighlightedCell).style.background='#006600';
 
 CurrentHighlightedCell is a variable that contains the current id of the
 TD background color I am changing.
 
 Thanks..
 Jeff
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214590
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Javascript browser compatibility question.

2005-08-11 Thread Jeff W
I'll try the backgroundColor and give that a whirl...
Thanks,

Jeff

On 8/11/05, Charlie Griefer [EMAIL PROTECTED] wrote:
 
 if it's a literal ID value, then yes, he'd need quotes. I'm guessing
 it's a variable.
 
 Try backgroundColor (note the casing) instead of background.
 
 On 8/11/05, Jim Campbell [EMAIL PROTECTED] wrote:
  Does it matter if you put the element ID in quotes?
 
  getElementById(CurrentHighlightedCell)...
 
  - Jim
 
  Jeff W wrote:
 
  Can anyone tell me WHY this won't work in NS6.1 but work fine in ie5-6,
  firefox and NS8??
  
  document.getElementById
 (CurrentHighlightedCell).style.background='#006600';
  
  CurrentHighlightedCell is a variable that contains the current id of 
 the
  TD background color I am changing.
  
  Thanks..
  Jeff
  
  
  
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214591
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Javascript browser compatibility question.

2005-08-11 Thread Jeff W
Well isn't NS6.1 odd

It appears that BOTH my example and the new.backgroundColor example work and 
don't work...

As if you couldn't tell this is a background cell changer. ...and this code 
is firing on the ONCLICK of each cell :) Here is the weirdness...

Say I have 3 cells wide table... Each named menu_item1, menu_item2 and 
menu_item3 respectively. This code reverts the previous cell to the original 
cell color and is part of the code to chage the newly clicked cell to a 
different color..

document.getElementById
(CurrentHighlightedCell).style.backgroundColor='#006600';

Say I click through each cell consecutively. menu_item1, menu_item2 and then 
menu_item3 it changes each cell to the new color and the code above 
CORRECLTY changes the color back on the previous cell. That works perfect.

Now the weirdness.. Say I click on menu_item3, it changes menu_item1 back to 
the original color fine... but then I click on menu_item2, it DOES NOT 
change the color back on menu_item3 using the above code. I double checked 
and the variables are correct.. Very odd... IS there another DOM way to 
reference this?

Jeff



On 8/11/05, Jeff W [EMAIL PROTECTED] wrote:
 
 I'll try the backgroundColor and give that a whirl...
 Thanks,
 
 Jeff
 
 On 8/11/05, Charlie Griefer [EMAIL PROTECTED] wrote:
  
  if it's a literal ID value, then yes, he'd need quotes. I'm guessing
  it's a variable.
  
  Try backgroundColor (note the casing) instead of background.
  
  On 8/11/05, Jim Campbell  [EMAIL PROTECTED] wrote:
   Does it matter if you put the element ID in quotes?
  
   getElementById(CurrentHighlightedCell)...
  
   - Jim
  
   Jeff W wrote:
   
   Can anyone tell me WHY this won't work in NS6.1 but work fine in 
  ie5-6,
   firefox and NS8??
   
   document.getElementById
  (CurrentHighlightedCell).style.background='#006600';

   CurrentHighlightedCell is a variable that contains the current id of 
  the
   TD background color I am changing.
   
   Thanks..
   Jeff
   
   
   
  
  
  
  

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214594
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: Browser Compatibility.

2005-08-05 Thread Jeff W
What does everyone use to test browser compatibility, visually? 

Short of having a number of PC's/Macs running numerous operating systems and 
different browsers or going by a text chart with different browsers and 
versions incompatibilities, is there another way? I built a nice dynamic 
tabbed menuing system that I want to make sure looks ok on older browsers. I 
have the usuals loaded up IE.6, Firefox, netscape 6.1, netscape 8. My 
validation check says theres incompatibilities with Netscape 6.0. which I 
don't have and I know alot of people also use AOL as well, outside of 
getting an AOL account, how do you go about testing those browsers?

Thanks.
Jeff


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213859
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cfsqltype and SQL7

2005-08-03 Thread Jeff W
I am wondering about custom data types and cfsqltype. How does CFMX handle 
custom data types from MS SQL 7 when using cfqueryparam?? Do I just use the 
custom data types original type?

Thanks,
Jeff


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213600
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


TO USE SQL or something entirely different.

2001-02-27 Thread Jeff W

I need a good starting point.

I am looking to streamline our shipping procedures. Right now I generate two
queries that divide out packages that are going UPS and US mail. Thats the
easy part.. These insert easily into our standard UPS software. LOL

What I would like to do.

Each business card order is shipped pretty much separately (for drop ship
purposes and the fact that not every color is produced everyday). So A UPS
query may have multiple sets of cards (records) going to the same place. How
in the world can I take that query, combine all the records that are the
same, add their weights up and insert them back into the list only once???

I am open for suggestions.

Jeff
Priority Business Cards



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: TO USE SQL or something entirely different.

2001-02-27 Thread Jeff W

I would post code, but I havn't started coding this yet. ;-)

The current code is only a short query to find out if the card is ready to
ship AND if its going out UPS. That query puts its results in a file
suitable for import into the UPS software. Nothing special.

Right now I get doubles, triples, etc.of the same shipping destination in
this query. What my goal is, is to try and take those duplicate, and
triplicate, etc. records and meld them into one record, adding their weights
together. The list would then only have one instance of the shipping
destination and its total weight instead of numerous times. I can then
import this list into the UPS software without editing the actual text file
like I do now.

Hope that is a little clearer.



- Original Message -
From: "Elizabeth Marcotte - Selphcotte Web Designs"
[EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, February 27, 2001 12:21 PM
Subject: RE: TO USE SQL or something entirely different.


 Jeff

 If I understand you correctly - you could create arrays - loop through the
 arrays comparing whatever fields you are using to determine the same
records
 going to the same place, do the calcs on those records - update another
 array with the totals for each "same place" - this new array will have one
 record for each same place - they loop through the new array and insert
into
 wherever you need to insert only once.

 I am sorry that is confusing - I might not be understanding what you
need -
 but Arrays are a good way to group data.  Hope that helps.  If you post
the
 code you are using - it might be easier for people to help?
 E

 -Original Message-
 From: Jeff W [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, February 27, 2001 8:29 AM
 To: CF-Talk
 Subject: TO USE SQL or something entirely different.

 I need a good starting point.

 I am looking to streamline our shipping procedures. Right now I generate
two
 queries that divide out packages that are going UPS and US mail. Thats the
 easy part.. These insert easily into our standard UPS software. LOL

 What I would like to do.

 Each business card order is shipped pretty much separately (for drop ship
 purposes and the fact that not every color is produced everyday). So A UPS
 query may have multiple sets of cards (records) going to the same place.
How
 in the world can I take that query, combine all the records that are the
 same, add their weights up and insert them back into the list only once???

 I am open for suggestions.

 Jeff
 Priority Business Cards

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Session var resources

2001-01-18 Thread Jeff W

Even better get either Ben's book "The ColdFusion 4.0 Web Application
Construction Kit", or "Mastering Cold Fusion 4.5" from Arman Danesh. This is
where I learned about sessions.

Jeff Waris
Priority Business Cards


- Original Message -
From: "JLB" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, January 18, 2001 9:03 AM
Subject: Session var resources


 Anyone have a good site that tells all there is about session and client
 vars. I need to learn when is a good time to use them and how to implement
 them at that time.

 Jim Becker




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



HELP!!! CFOBJECT problems!!

2001-01-17 Thread Jeff W

I am bashing my brain trying to figure this one out. I am using a COM object
to get a URL and an ID number.
Easy enough. At least I thought.

Here is the error I get from Cold Fusion
--
Error resolving parameter TID

ColdFusion was unable to determine the value of the parameter.


Here is the code..
--

cfscript
VPCObject = createobject("COM", "mtk.mtkcom.1");
err = VPCObject.GetTransactionID(url,tid);
/cfscript

Here is what I am using as reference. Below is the ASP code that gives me
two variables, URL and TID. IT does work. I do realize that I am setting
session variable here in ASP and not with the CFscript code..

set Session("VPCObject") = server.CreateObject("Mtk.MtkCom.1")
err = Session("VPCObject").GetTransactionID(url,tid)

Once this is set in ASP I can access both the URL and TID variables.

The only idea that I can come up with is that when I set err variable its
not allowing me to get BOTH the URL and TID..

I am up for any suggestions..

Jeff W.
Priority Business Cards




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HELP!!! CFOBJECT problems!!

2001-01-17 Thread Jeff W

Thanks much. Worked like a charm. It was a combo effect... I had to set the
URL and TID variables and then had to use the quotes. Works like a charm...

Jeff
Priority Business Cards

- Original Message -
From: "Simon Horwith" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, January 17, 2001 2:38 PM
Subject: RE: HELP!!! CFOBJECT problems!!


 try surrounding url and tid with quotes.  Your best bet is to look through
 whatever documentation you can for the COM Object, though.

 ~Simon

  Simon Horwith
  Allaire Certified ColdFusion Instructor
  Certified ColdFusion Developer
  Fig Leaf Software
  1400 16th St NW, # 220
  Washington DC 20036
  202.797.6570 (direct line)
  www.figleaf.com
 


 -Original Message-
 From: Jeff W [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, January 17, 2001 11:48 AM
 To: CF-Talk
 Subject: HELP!!! CFOBJECT problems!!


 I am bashing my brain trying to figure this one out. I am using a COM
object
 to get a URL and an ID number.
 Easy enough. At least I thought.

 Here is the error I get from Cold Fusion
 --
 Error resolving parameter TID

 ColdFusion was unable to determine the value of the parameter.


 Here is the code..
 --

 cfscript
 VPCObject = createobject("COM", "mtk.mtkcom.1");
 err = VPCObject.GetTransactionID(url,tid);
 /cfscript

 Here is what I am using as reference. Below is the ASP code that gives me
 two variables, URL and TID. IT does work. I do realize that I am setting
 session variable here in ASP and not with the CFscript code..

 set Session("VPCObject") = server.CreateObject("Mtk.MtkCom.1")
 err = Session("VPCObject").GetTransactionID(url,tid)

 Once this is set in ASP I can access both the URL and TID variables.

 The only idea that I can come up with is that when I set err variable its
 not allowing me to get BOTH the URL and TID..

 I am up for any suggestions..

 Jeff W.
 Priority Business Cards

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



The mysterious CFSCRIPT...... Help

2001-01-08 Thread Jeff W

I am interesting in learning cfsript

Has anyone seen any tutorials on the web? Is there any books written on it??
To me it seems there is not alot information in even the current cold fusion
books about it. I know its supposed to be simmilar to javascript and
somewhat asp. I've seen SOME cfscript examples. I've seen some conversions
from ASP to CFSCRIPT...

Ideas and Suggestions are GREATLY appreciated.

Jeff




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Reading in Text Files /Parsing/updating tables

2000-07-10 Thread Jeff W

I need to update a table inside a database with a text file...

Since our credit card processing software is ancient and throws the auth
codes into a text file once batch processed, I'd like to update our orders
table to reflect the authcode.

Each Line of the text file looks something like this (usually there will be
multiplelines):

"1" "123456789012345" "1202" "18.99" "1713" "14219" "7555" "245962"

Each item is separated by quotes. What I would like to do is key on the
second set of double quotes which is the CC#. Base a query on that cc# to
find that number in my orders table. Update the CCauth field with the info
in the last set of quotes and update our payment status field to "payment
made". Looping until its done with the text file

Ideas?

Thanks,
Jeff






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



Re: shopping cart?

2000-06-01 Thread Jeff W

Look at Web monkey, they have a nice tutorial on how its done;

http://hotwired.lycos.com/webmonkey/99/49/index4a.html?tw=programming

Ben Fortas book has another example in it. There are a couple others
floating around that I can't remember, and there might even be an app on
Allaires developers site already done for you.

Hope that helped...

Jeff


.
 Hi

 I'm looking to do my first shopping cart w/ CF. As the merchant for whom
the
 site is being built doesn't accept credit cards, "submit order" is simply
 going to send a few emails and store some records in the database.

 Can anyone give me a few pointers on the best way to do this? Would
 CFTRANSACTION be useful?

 Thanks!

 * John *

 --

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



Form Dilemma

2000-04-24 Thread Jeff W

This is a multi-part message in MIME format.

--=_NextPart_000_01A1_01BFADD5.6515A5A0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I have a dilemma.

I want to make a multiparted form, lets say 5 mini-forms to eliminate =
one large form. You would get put into the first mini-form and be able =
to move throughout these parts by clicking on graphic buttons instead of =
submit buttons. It would update any changes if made. Then on the last =
mini-form it would actually process it and do what I need it to do.

The kicker is that I have 30 or so large forms. Some of these parts =
would be the same in all forms, others would be different. So I would =
love to be able to re-use the code.

I have some ideas, like tossing all the form. variables to session =
variables, but have no idea exactly how to actually convert them to =
session variables since I don't know how to do it without a submit =
button AND not being able to know WHICH form they will go to next to be =
able to set the form. variables to session. variables.=20

I figured I would toss this out on here to see if anyone had done this =
before and could shed some light on this for me.


Thanks,
Jeff
[EMAIL PROTECTED]

--=_NextPart_000_01A1_01BFADD5.6515A5A0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.2920.0" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2I have a dilemma./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I want to make a multiparted form, lets =
say 5=20
mini-forms to eliminate one large form. You would get put into the first =

mini-form and be able to move throughout these parts by clicking on =
graphic=20
buttons instead of submit buttons. It would update any changes if=20
made.nbsp;Then on the last mini-form it would actually process it and =
do what I=20
need it to do./FONT/DIV
DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
DIVFONT face=3DArial size=3D2The kicker is that I have 30 or so =
large=20
forms.nbsp;Some of these parts would be the same in all forms, others =
would be=20
different. So I would love to be able to re-use the code./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I have some ideas, like tossing all the =
form.=20
variables to session variables, but have no idea exactly how =
tonbsp;actually=20
convert them to session variables since I don'tnbsp;knownbsp;how to do =
it=20
without a submit button AND not being able to know WHICH form they will =
go to=20
next to be able to set the form.nbsp;variables to session. variables.=20
/FONT/DIV
DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
DIVFONT face=3DArial size=3D2I figured I would toss this out on here =
to see=20
if/FONTnbsp;FONT face=3DArial size=3D2anyone had done this before =
and could=20
shed some light on this for me./FONT/DIV
DIVnbsp;/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks,/FONT/DIV
DIVFONT face=3DArial size=3D2Jeff/FONT/DIV
DIVFONT face=3DArial size=3D2A=20
href=3D"mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]/A/FONT/DIV=
/BODY/HTML

--=_NextPart_000_01A1_01BFADD5.6515A5A0--

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