| Title: |
JS Question |
| Date: |
05/31/03
6 Posts
|
| Summary: |
How can you use JavaScript to access the text displayed by a SELECT option?
document.formname.selectname.options
[document.formname.selectname.selectedIndex].text;
|
|
| |
| Title: |
Very Basic Beginner Tutorial on CFCs? |
| Date: |
05/31/03
8 Posts
|
| Summary: |
Several developers recommend resources for beginners who need a solid grounding in CFCs. |
| |
| Title: |
DateDiff Query |
| Date: |
06/01/03
6 Posts
|
| Summary: |
How would you revise the following MS Access WHERE clause for mySQL to get all records created within the past 24 hours?
MS Access:
WHERE DATEDIFF('n',TheDate,#CreateOdbcDatetime
(DateAdd("n", -1440, now() ) )# ) <= 1
mySQL:
WHERE TheDate > <cfqueryparam cfsqltype="cf_sql_timestamp"
value="#DateAdd("d",-1,Now())#">
|
|
| |
| Title: |
CF and Mail Engines |
| Date: |
06/01/03
11 Posts
|
| Summary: |
Is there a mail engine similar to Lyrus that is capable of sending thousands of emails an hour? One developer reports that he switched from Lyrus to LSMTP (LSoft) a couple of years ago and has had great success using it with CFX_Mail. |
| |