
I created a Facebook Fan Page today in hopes to create my first Facebook and Twitter application which is in the works. The idea of what my application will do is feed in a twitter feed to your Facebook page NOT your personal profile. There has been a few attempts but nothing yet that satisfies me. Zach Schneider FB page
Zach Schneider Fan Page Project
ColdFusion Try and Catch
In order for your code to directly handle an exception, the tags in question must appear within a cftry block. It is a good idea to enclose an entire application page in a cftry block. You then follow the cftry block with cfcatch blocks, which respond to potential errors. When an exception occurs within the cftry block, processing is thrown to the cfcatch block for that type of exception.
Here is an outline for using cftry and cfcatch to handle errors:
<cftry> Put your application code here ... <cfcatchtype="exception type1"> Add exception processing code here ... </cfcatch> <cfcatchtype="exception type2"> Add exception processing code here ... </cfcatch> ... <cfcatchtype="Any"> Add exception processing code appropriate for all other exceptions here ... </cfcatch> </cftry>
IE on Ubuntu
Are you a web developer like myself needing to test crossplatform and would really prefer do it all on 1 OS (not Windows) well I have the solution IEs4Linux
Type this in a Linux command terminal:
===================================================================
wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz
tar zxvf ies4linux-latest.tar.gz
cd ies4linux-*
./ies4linux
===================================================================
