Another Challenging question

2003-03-21 Thread Sangeeta Karmokar
I am not sure how add a new thread. So I am posting this message here.. I am new user of CFMX and I am creating Login and Password page with Access as Database. CAn anyone check as this CF script is ok: cfquery name=Login datasource=Users SELECT * FROM Login WHERE Usr_Name = #form.Usr_Name# AND

Another Challenging question

2003-03-21 Thread Sangeeta Karmokar
I am not sure how to add a new thread. So I am posting this message here.. I am a new user of CFMX and I am creating Login and Password page with Access as Database. CAn anyone check as this CF script is ok: cfquery name=Login datasource=Users SELECT * FROM Login WHERE Usr_Name =

RE: Another Challenging question

2003-03-21 Thread Hamm, Greg
Partner Coreillia Development [EMAIL PROTECTED] http://www.coreillia.com -Original Message- From: Sangeeta Karmokar [mailto:[EMAIL PROTECTED] Sent: March 20, 2003 11:12 PM To: CF-Talk Subject: Another Challenging question I am not sure how to add a new thread. So I am posting this message

Another Challenging question

2003-03-21 Thread Sangeeta Karmokar
Thanks Heaps Grey.. I also want to know whether Coldfusion MX supports Microsoft Access 97??Because I am having 97 at home and 2000 in office. It runs fine at my office but at home it is not showing the datasource in admin page. Can I keep your Email ID for furhter reference? Sangeeta

RE: Another Challenging question

2003-03-21 Thread Kazmierczak, Kevin
PROTECTED] Sent: Friday, March 21, 2003 2:12 AM To: CF-Talk Subject: Another Challenging question I am not sure how to add a new thread. So I am posting this message here.. I am a new user of CFMX and I am creating Login and Password page with Access as Database. CAn anyone check as this CF script

RE: Another Challenging question

2003-03-21 Thread Ken Wilson
, 2003 8:27 AM To: CF-Talk Subject: RE: Another Challenging question You might want to switch your cfif statement. I think it is backwards. If the recordcount is greater or equal to one that's a valid login, else if it is zero, it was an invalid login. Like: cfif Login.RecordCount IS 0

Re: Another Challenging question

2003-03-21 Thread Bryan Stevenson
: Another Challenging question Ok.. lets say that I have a HTML form with field names from the database.. Like.. ShoppingItem_ItemCode Or a better example.. : 'ShoppingItem_' database.itemcode so..as people add items to their shopping cart.. this list gets longer.. input type

RE: Another Challenging question

2003-03-21 Thread Dobris, Eric
, March 21, 2003 2:12 AM To: CF-Talk Subject: Another Challenging question Importance: Low I am not sure how to add a new thread. So I am posting this message here.. I am a new user of CFMX and I am creating Login and Password page with Access as Database. CAn anyone check as this CF script is ok

Another Challenging question

2003-03-20 Thread Ezine
Ok.. lets say that I have a HTML form with field names from the database.. Like.. ShoppingItem_ItemCode Or a better example.. : 'ShoppingItem_' database.itemcode so..as people add items to their shopping cart.. this list gets longer.. input type=text name=ShoppingItem_Gyro

RE: Another Challenging question

2003-03-20 Thread Matthew Walker
But when the processor goes to evaluate the form field.. for the quantity.. it looks like this, (evaluate(field)) which translates to (evaluate(ShoppingItem_goober-pokerman)).. and Coldfusion treats it as a math equation.. If I get what you're saying, try form[field] instead of