Good Afternoon Kevin- What you want to do is not cheating (unless of course his definition of cheating is anyone who doesnt use perl) but learn how to implement UI functions so toy can properly demonstrate some CRUD functionality ro your client..that said Here is what I would do for the front end
http://learn.adobe.com/wiki/display/Flex/CRUD+-+Dynamic (Now you can hook your UI action or onSubmit event to a perl or cgi script) More importantly is to the ability to handle backend functionality perhaps with Struts CRUD with Dojo Controls for textbox,checkbox,listbox,SubmitButton with ajax functionality to your struts action class http://www.learntechnology.net/content/struts/struts_crud.jsp In any event whatever you implement should be easiest to implement for you as well as delivering basic Create,Replace,Update and Delete Functionality.. (Shalom) Martin ______________________________________________ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission. > To: [EMAIL PROTECTED]; [email protected] > Subject: Re: Simple TO-DO List Manager program > Date: Fri, 24 Oct 2008 15:18:51 -0400 > From: [EMAIL PROTECTED] > > > Raf, > > Thanks for the info.? I apologize that you think I am cheating, that is not > the goal.? The goal is to learn and get educated in a new area for me.? I > thought to check in with this group first to know which direction to go in.? > I do appreciate you sending me in the right direction so I can do this > program with integrity. > > Kevin > > > > > > > > -----Original Message----- > From: Gemmail, Rafiq (IT) <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED]; [email protected] > Sent: Thu, 23 Oct 2008 7:30 am > Subject: RE: Simple TO-DO List Manager program > > > > > > > > > > > This is perl/DBI list - not a coldfusion/mssql list. I would recommend > buying a > beginners book on writing database driven coldfusion apps as your starting > point. Or if you're insistant on cheating - have a look at > www.google.com/codesearch > [1] > > Raf > > [1] Not that I advocate this. > > > > > -----Original Message----- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > Sent: 23 October 2008 15:20 > > To: [email protected] > > Subject: Simple TO-DO List Manager program > > > > > > Hello all > > > > I am doing a simple TO-DO list manager using Coldfusion 8 and > > the language and MSSQL as the database.? My Required Functionality is: > > ??? Add TODO > > ??? Remove TODO > > ??? Modify TODO > > ??? Delete TODO > > ??? View ALL TODO's > > > > I am asking for assistance in doing this program.? It is > > simple, but I'm new and not quite sure of what steps to > > take.? Thank you > > > > > > A Sample Schema: > > > > > > CREATE > > TABLE [dbo].[todo]( > > [todoid] [int] > > IDENTITY(1,10 NOT NULL, > > [name] [varchar] > > (150) NOT NULL, > > [dueDate] [datetime] > > NOT NULL, > > [status] [bit] > > NOT NULL CONSTRAINT [DF_todo_status] DEFAULT ((0)), > > > > CONSTRAINT [PK_todo] PRIMARY KEY CLUSTERED ( [todoId] ASC > > ) > > WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, > > IGNORE_DUP_KEY = OFF,? ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS > > = ON, FILLFACTOR = 80 [PRIMARY] > > ) > > ON [PRIMARY] > > > -------------------------------------------------------- > > NOTICE: If received in error, please destroy and notify sender. Sender does > not > intend to waive confidentiality or privilege. Use of this email is prohibited > when received in error. > > > > > _________________________________________________________________ You live life beyond your PC. So now Windows goes beyond your PC. http://clk.atdmt.com/MRT/go/115298556/direct/01/
