Get Javascript value from Coldfusion in same page

Today, I've found funny resolution to get javascript value from Coldfusion in same page without reloading. I'm not sure whether it might be useful or not, but for me it's kinda useful.

Usage

view plain print about
1<cfsavecontent variable="JSvalue">
2    <script>
3        var whatisyourname = "ppshein";
4        document.write(whatisyourname);
5    </script>
6</cfsavecontent>
7
8<cfoutput>#JSvalue#</cfoutput>

Your Ad Here

Coldfusion documentation application is in Android market

Today, I'm glad to inform to all that my Coldfusion documentation application is in Android market now. I'm planning to add more cool features in it just like tablet version and so on.

Coldfusion Documentation

Android Coldfusion documentation application

Today, I've finalised Android Coldfusion documentation application for Coldfusion developer. This one is my third android application for my Android developer life and enhance more features which not included in my later applications.

In this Coldfusion documentation application, you can search functions and tags of Coldfusion and view all lists of functions and tags either. Likewise, functions and tags which you search are not in this documentation, you can search similar functions and tags of CF.

[More]

CFIDE with multiple instance

Today I got the problem that I cannot use following sentence in one of my instance.

view plain print about
1<cftextarea skin="silver" toolbar="Basic" richtext="true" name="body" required="true">

And hit JS error and don't know why. That's why I just go viewsource and found that CFIDE is missing for one of my CF instances. I cannot convince why Adobe cannot include CFIDE for multiple instances installation. That's why I know there is two ways to solve this bug of Coldfusion multiple instance installation.

[More]

Get free exam simulator from uCertify

 

uCertify, leading IT certification provider company is willing to spring for a license, that's a full license, for any of their test prep kits for one of my blog readers. The only requirement to get the full license is that you write a review of the software, within 30 days, that will be a guest post here on this blog.
 
So, I am offering this to all of my blog readers. Today is Nov 30, 2011. To get a chance to win the prep kit license, go to the ucertify site and take a look at the available tests. Decide which you would like to take.
 
Once you've made your choice, come back here and post a comment about which you would like and why you want to take it. Doesn't have to be anything big; just a couple of sentences is fine.
 
Make sure you either leave a real email address or you are signed in when you leave the comment. You don't need to leave your email address in the text of your comment if you are signed in. I can send you a message via the it toolbox messaging system in that case.
 
I will randomly choose the winner from the comments on Dec 10, 2011. So, you have about 10 days to post a comment.
 
Once I have notified the winner and they agree to review the software in a guest post here on this blog, I will give the info to Ucertify and they'll hand out the license.
 
The guest post doesn't need to be huge. At least a few hundred words which is just a page or two of double spaced text. As an example, this  blog post is over 400 words. I'll be glad to proofread and edit it if you would like me to mail me (pyaephyoeshein[at]gmail[dot]com).

Get IPv6 address

Today, I've found how to get IP address of IPv6. Because we're using IPv6 address in our office and normally so far to use for IPv4 in Window7. That's why I gotta retrieve address of IPv6. On the other hand, CGI variable can retrieve IPv4 address of client machine.

How to get IPv6 is as follow. First of all, we need to create Java object first which called "java.net.InetAddress". Then, write as follow.

[More]

IncrementValue in Coldfusion is useful

Today, I've oddly found IncrementValue in Coldfusion. In my previous time, when I need to increase count in Coldfusion, I always use as follow.

view plain print about
1<cfset mycount = mycount + 1>
2
3<!--- CFScript version --->
4<cfscript>
5    mycount++;
6
</cfscript>

[More]

Oracle 11g: SQL Fundamentals (1Z0-051) exam guide

In this 2011, I feel like myself to take almost certification of what I know and what I'm using in my development space. Being programmer, I didn't say almost certificates are needed but just like non-computer science graduated like me, those certificate are very needed. Because almost people won't know why I'm surviving in IT without having computer science graduate. That's why I believe I'm not wrong to take certificate. 

When I was in Myanmar, we use Microsoft SQL as our database because which is simple and easy to use with their UI. When I started working in Singapore (2009), our company use Oracle as database system instead of Microsoft SQL. Since that time, I'm addictive at Oracle because of the way of writing stored procedure, functions and views. That's why I think I need to have at least one Oracle certificate to let people know that I know Oracle.

That's why I decided to take 1Z0-051 exam of Oracle. It's called SQL Fundamentals exam which is suitable for me to take as beginner state of Oracle developer. Below is the exam topic of 1Z0-051.

[More]

Coldfusion 9 exam preparation

I'm now planning to take Coldfusion 9 exam for my career enhancement. Because I'm Adobe Certified Expert in Coldfusion 8 and I feel like myself to take Coldfusion 9 either. Some people will argue that certificates are not needed if you really know of it but for new career, it's needed. When I want to apply for new job, I'm not sure whether the new employer know I really know Coldfusion or not without having certificate. 

Coldfusion 9 Exam Structure

  • Programming fundamentals
  • Working with the Application framework
  • Interacting with databases
  • Working with components
  • Interacting with persistent components
  • Working with XML
  • Reusing code
  • Interacting with remote systems
  • Managing files
  • Tuning application performance
  • Building advanced user interfaces
  • Reporting

[More]

My blog got higher reputation

In these days, I recognize that my blog got so many redirect links and got higher reputation even I cannot upload new blog post everyday because of my Android project. Today I search one of the popular post of mine called ImageView with asynctask through five popular search engine and reviewing the results, my post reach up to top 10 results of each search engines.

Google

My post got 4th position of top 10 results.

Bing

My post got 1st position of top 10 results. It's incredible. :)

Yahoo

My post got 6th position of top 10 results. It's bad.

Ask

My post got 8th position of top 10 results. Sigh...!!!

AOL

My post got 5th position of top 10 results.

[More]

More Entries

Top of Page