Re: RSA Asymmetric Encryption/Decryption with Private/Public Keys
You could have a look at coldfusion-rsa component on GitHub https://github.com/ggfx/coldfusion-rsa
View ArticleSpreadsheetRead
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSe9cbe5cf462523a0- 7b585809122c5a12c54-8000.html
View ArticleRe: SpreadsheetRead
There should be a link to the subcategory "Spreadsheet functions": http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461...
View ArticleRe: Useful code for exporting to Excel xlsx
An inline DataTable is not the same thing as exporting data in a standardized XLSX format. (I'll post the script I use in another comment. Regarding inline tables, here are some other worth...
View ArticleRequest scope attack?
Hello, everyone. Is it possible for hackers/attackers to modify the request, server, or application scope? Thank you, ^_^
View ArticleRe: Request scope attack?
That's a unhelpfully broad question. The answer is "yes", although they'd need to be quick to change something in the request scope. It depends on what sort of hacking vector one is using as to what...
View ArticleRe: Useful code for exporting to Excel xlsx
Here's a link to a ColdFusion 9+ Custom Tag that I wrote to convert a query object to an Excel file.https://gist.github.com/JamoCA/6089292 I added some features to deal with dates, values that look...
View ArticleRe: Invalid Mimetype Detection for .xls file with CF10
In attempting to tighten our uploads, we also have run into this problem. I was able to work around the problem thanks to this writeup. I made sure that I accepted both excel and msword if the type of...
View ArticleColdFusion.navigate(url, 'w2');
I use following code to have my CFGRID to navigate to my page.It navigates to the same Windows,I would like to have it has a new Windows. ColdFusion.navigate(url, 'w2'); <cfwindow name="w2"...
View ArticleRe: ColdFusion.navigate POST v GET in CF8
Suggestion: Place an 'id' value on your CFFORM tag. Use that 'id' value name as the last section of your coldfusion navigate command instead of the current value 'addForm'. Also - you can remove the...
View ArticlejQuery in CFWINDOW
I have jQuery DatePicker and TimePicker which works in the form.jQuery DatePicker and TimePicker do not show in CFWINDOW.I did Google and see some discussion, but no luck,I would like to know any work...
View ArticleWhat SMTP servers are compatible with CF8 and 9?
Hi all. In order to buy us time until we can upgrade our farm to CF10, what SMTP email servers can we use? The enterprise is going to Exchange 2010 and I understand CF8 and 9 are not compatible with...
View ArticleRe: Invalid Mimetype Detection for .xls file with CF10
This error should no longer be occuring, at least it does not for us. I'm guessing Adobe fixed it or it is from one of the more recent Java updates. You might be able to fix it on your end by updating...
View ArticleCF10 developer edition .. is it still available ?
the link to the developer edition on the adbove page is bringing up an error screen https://www.adobe.com/cfusion/tdrc/index.cfm?product=coldfusion is the developer edition no longer available ?...
View ArticleRe: CF10 developer edition .. is it still available ?
Hello Michael, Thank you for your post. You can download the Developer edition from https://www.adobe.com/support/coldfusion/downloads.html#cf10productdow nloads. It will further take you to...
View Articleautosuggest
Hi, I have two questions, hope anyone can assist me with?1) I have the drop box is displayed the long list of city names and don't want user to scroll up and down to find the name. Is there the way we...
View ArticleRe: CF10 developer edition .. is it still available ?
it was a browser issue, the link works fine in firefox .. but gives an error screen for IE9 thanksMichael
View ArticleRe: autosuggest
Hi Create a .cfc name it as autosuggest.cfc <cfcomponent output="false"> <!--- Lookup used for auto suggest ---> <cffunction name="findPark" access="remote"...
View ArticleRe: jQuery in CFWINDOW
Why don't you use jQuery Dialog to achieve the same thing instead of using cfwindow? http://jqueryui.com/dialog/
View ArticleRe: jQuery in CFWINDOW
Thanks for the information and help,Dialog is a good idea to show some informaiton or message to the users.I need to use CFWINDOW, because I have contorls on the form like DatePicker, TimePicker,...
View Article