jackhuang
I have made an encryption of "auth" using AES as follows:   <cfset skey = generateSecretKey("AES")> <cfset regkey = encrypt("auth", skey, "AES", "hex")>   I attached the result for example to an…
in ColdFusion
jackhuang
I use the code       <cfajaximport tags="cfform, cfmessagebox, cfwindow">    <cfwindow bodystyle="background:white;font:12px/normal arial, Helvetica, sans-serif;" initShow="true" width="350"…
in ColdFusion
jackhuang
I am new to using cfcomponent and autosuggest.  I followed the sample given in the Adobe Help Adobe ColdFusion 9 * Using Ajax User Interface Components and Features   However, I am not getting the…
in Advanced Techniques
jackhuang
The CFINPUT with the VALIDATE="integer" is not working properly at all.  The user can enter 23,950 as the number.  We would think this is OK but it won't work properly without stripping the ","  …
in ColdFusion
jackhuang
I have a done a CFQUERY and retrieve user's email and name.  Then I try to do a CFMAIL something like:   <cfmail to="#user.email#" from="sender@somewhere.com" subject="Message from #sender_name#"…
in ColdFusion