Posted on November 21st, 2008, by admin
AJAX means Asynchronous JavaScript and XML. It is a web development technique for creating interactive web applications. Ajax helps to make web pages feel more responsive by exchanging small amounts of data with the server behind the scenes, so that read more…
Category:
Posted on November 12th, 2008, by admin
To know the concept of inheritance clearly you must have the idea of class and its features like methods, data members, access controls, constructors, keywords this, super etc.
As the name suggests, inheritance means to take something that read more…
Tags: Inheritance in Java, Java Extends, Java Inheritance, Multilevel Inheritance, Simple Inheritance
Category:
Posted on November 5th, 2008, by admin
Everyone that wants to program JavaScript should at least try reading the following section. If you have trouble understanding it, don’t worry. The best way to learn JavaScript is from the examples presented in this tutorial. After you have been read more…
Category:
Posted on November 4th, 2008, by admin
Introduction
Javascript is an easy-to-use programming language that can be embedded in the header of your web pages. It can enhance the dynamics and interactive features of your page by allowing you to perform calculations, check forms, write interactive games, add read more…
Tags: JavaScript, javascript tutorial, Object oriented, tutorial
Category:
Posted on October 19th, 2008, by admin
import java.io.*;
class Add
{
public static void main(String[] args) throws IOException
{
int i,j;
BufferedReader br = new BufferedReader(new inputStreamReader(System.in));
System.out.println(“Enter First Number: “);
i = Integer.parseInt(br.readLine());
System.out.println(“Enter First Number: “);
j = Integer.parseInt(br.readLine());
System.out.println(i + ” + ” + read more…
Category:
Posted on October 19th, 2008, by admin
Java is an object-oriented programming language with a built-in application programming interface (API) that can handle graphics and user interfaces and that can be used to create applications or applets. Because of its rich set of API’s, similar to Macintosh read more…
Category:
Posted on October 9th, 2008, by admin
A PHP file may contain text, HTML tags and scripts. Scripts in a PHP file are executed on the server.
What You Should Already Know
Before you continue you should have a basic understanding of the following:
HTML / XHTML
Some scripting knowledge
If read more…
Category:
Posted on October 9th, 2008, by admin
Introduction
In the last part I explained a few of the things you can do using forms. In this, the final part, of the JavaScript tutorial I will explain how you can do some other things with your JavaScript forms.
Using The read more…
Category:
Posted on October 9th, 2008, by admin
Introduction
In part 6 I showed you how to use If and loops. In this part I will show you how you can manipulate HTML forms with JavaScript to improve your website.
Changing The Value Of A Text Box
Before you read more…
Category:
Posted on October 9th, 2008, by admin
Introduction
In previous parts I have shown you how to declare a JavaScript, open windows and display information. In this part I will show you how to use two of JavaScripts most important functions, If and Loops.
If
The if function allows you read more…
Category: