Click this image to view the official website of Protoype
- INTRODUCTION -
I am currently working on a huge web-based application project for our customer in the United States. It is a customer (client) – company (server) end to end solution that tends to ease their business transactions by making them online – in short accessible [...]
May 6, 2008
Categories: JavaScript . Tags: dynamic html, JavaScript, prototype . Author: ajison . Comments: 2 Comments
I am currently developing a simple web application that would apply the MVC architecture. To those new to the MVC term, it stands for Model-View-Controller. An architecture used for simple applications that separates the GUI pages (for end client), the business logic (reusable classes), and the controller (that controls the event or method call). You [...]
November 6, 2007
Categories: Eclipse, Java, Programming Languages . . Author: ajison . Comments: 14 Comments
If you are working on a Java Project that requires data storage and manipulation, a Java interface could be of great help to you. The “PreparedStatement” interface, under “java.sql” package, pre compiles and stores your SQL statements in an object to efficiently execute the said statement multiple times. There are setter methods that you have [...]
October 29, 2007
Categories: Java, Programming Languages . . Author: ajison . Comments: 2 Comments
Limiting the decimal points/places of a double/float value is very important mostly when you are dealing with average or amount. Usually, the JVM presents the maximum number of decimal places depending on the type used. Apparently, having more than three decimal points could be disturbing. Other languages like Turbo C/C++ deals with this by just [...]
October 5, 2007
Categories: Java, Programming Languages . Tags: decimal places, double, float, Java, limit . Author: ajison . Comments: 4 Comments
A college friend of mine asked for support re his Web Development project. He is developing an online banking application using HTML with Java Scripts. His page will be able to add deposits and subtracts withdrawals from the user’s current balance. A form selection (in a form of <SELECT> tag) is used to choose whether [...]
September 22, 2007
Categories: Java, JavaScript, Programming Languages . Tags: html, JavaScript, selectindex . Author: ajison . Comments: 1 Comment