Thanks for your suggestions John... I'll keep this in mind...! -ravi ... __________________________________________________ Do You Yahoo!? Tired of spam?...
How to insert picture in email body when using CFMAIL ? I use CFMX 6.0 Thank you. Heri [Non-text portions of this message have been removed]...
heri303
heri303@...
May 1, 2005 9:26 pm
32802
First, you must be running MX6.1 with updater installed or MX7. You can't do it with any earlier version of ColdFusion. When using inline images inside an...
Hi, our CF MX 6,1,0,83762 Server wasn't responding. We only got <. when we called a cfm-File from the server. jrun.exe was up to 50% of CPU. Then we tried to...
Hi, Can anybody please send a sample code for this since CFComet.com is under construction? Dan Plesse <dplesse@...> wrote: First thing I would do is...
I think this would work. You want to use grouping only on the first column. Then build the output string inside the next cfoutput. <cfset mystring = ""> ...
That is great. I also found that this works perfect: <cfOutput group="UnitName" query="queryName"> <tr> <td>#unitName#</td> <cfSet count = 1> <cfOutput> <cfIf...
Daniel Kang
daniel.k.kang@...
May 2, 2005 2:16 pm
32807
... From: shobha.v [mailto:shobharamu@...] Can anybody send a sample code for this?The www.cfcomet.com site is under maintenance I guess. ... already ...
How do I prefix each retrieved record by a number of the line it appears on, rather than by the number indicating its position in the database (#CurrentRow#)?...
I don't follow.... What do you mean by "line it appears on"? -John ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On...
if you're wanting to display it.. I'd use a counter in CF, outside the query define a variable and set it to 1. Then increment the variable at the end of the...
Just use a counter variable and increment it by one within the query loop: <cfset lineNum = 0> <cfloop query="queryName"> <cfset lineNum = lineNum + 1> ...
Thanks. It worked. Now, if I want to start another counter for the next query which starts where the first one left off, how do I set it up without knowing how...
Counter will equal that value, just continue using it. If you use the above, counter will have incremented and ready to go for your next query ... -- Auxilium...
forgive my ignorrance, but why do you terminate a tag with /> does this process quicker? ... -- ____________________________________________________ Ernest E....
Thanks again. (Would you believe it worked again? :-) ... I appreciate your help guiding me through these beginner steps. ... the ... outside ... by a ... on"?...
... To make it comply with proper XHTML formatting. Any single-line tag that does not have an ending tag must close itself... such as: <br /> <hr /> <cfset ......
Hello, I have a form which when submitted, emails that person that their data was successfully submitted with some more information as well. But I found out...
Dear Jhon, Thank you for the answer, it's very helpfull for me. Another question : If I used Crystal Report Graph in the body, can I do same way ? How ? For...
heri303
heri303@...
May 2, 2005 9:00 pm
32824
In theory, you can if you can attach a physical file to the email itself. -John ... From: coldfusion-howto@yahoogroups.com ...
You sure those email addresses exist? mcg _____ From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of ramgundan Sent:...
Keep in mind that if you send an email to multiple people at the same time, all of the email addresses must be valid or the entire email will be rejected and...
I need to be able to exclude a row from a result set of a query (exclude a payment option in certain circumstances) that is used to populate a select list....
Yes...the email addresses are legit and we are only sending one email at a time as the action happens when a user submits a form and the action page gets the...
1. If you are populating the select list using CFLOOP the just insert a <CFIF> test in the loop to skip the offending item. 2. If you prefer, you might do a...