get Table height with javascript

Normally, it's hard to get table height with javascript because javascript cannot read or retrieve table as follow

view plain print about
1<table id="tableID">
2    <tr>
3        <td>Height</td>
4    </tr>
5</table>
6
7<script>
8<!--
9    getTableHeight = document.getElementById("tableID").offsetHeight;
10    alert(getTableHeight)
11 -->

12</script>

[More]

Backup Oracle database with bat file

Today, I've found how to backup/export Oracle database with bat file. I've just created it for only one schema first. Why I'm using to import Oracle with bat file because of there is no auto backup feature in Oracle (as far as I know). That's why it's needed to create bat file and integrate with window task scheduler (run daily).

First of all, open Notepad and save as OracleBackup.bat first. Then, paste following code into this file.

view plain print about
1@echo off
2echo Importing Oracle Start
3echo =======================
4exp system/password file=C:/ppshein.dmp grants=y owner='ppshein';
5echo ==========================
6echo Importing Oracle End

[More]

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]

Top of Page