Monday, June 29, 2009

Javascript 's methods

In every programming language .(As I heard) we need to use pre defined methodes , Key words.
In Javscript 's we need to use perdifined methods and key words as well. When I am doing a tutorial 4 (3SFE407 ) there was a ..... :p

sname=document.forms[0].lastname.value;
In this case :

sname is called as a 1 st form's [indexing (like an array index)] Last Name .that textfield's
name is lastname.
that "document.forms[0].lastname.value" get in a value to sname.

firstletter=sname.charAt(0);

In this case :
This is a predefined method what we get in to surname's {This a person's surname} first charachter is pointed and that value
assign to firstletter{it should be a letter}

<div id="title">
User Registration
div>

In this case:
We are changing the title according to the surname.here we need to get a id to the title.its like a variable.
document.getElementById("title").innerHTML=title;
In this case:
Here what we got as the titles name is refered. then it changes the title name according to your lastname

Javascript carries...!

In 1996 new light weight client side scripting language was found.Those javascripts are embedded in HTML (Hyper Text MarkUp Language)tags.There is no relationship between java and javascript.This add a dynamism to a web page.For simple client side validations and for dynamic web pages with databses is implemented using javascript.Nw a days it has become a popular web tool.

Saturday, June 20, 2009

T20 Format of Cricket

When I am writing this blog ,T 20 World cup 2009 is going on. In 3 hours wining team will be decided and unbelievable things can be happened .It's speed , It's unpredictable , Any person can change the match. All the spectators are here to get entertained . Inaugural T20 world cup which was held in 2007 was won by India after sharp win against Pakistan.Consecutively Pakistan have selected to play against unbeaten SriLanka.

Thursday, June 18, 2009

Database Replication

Database replication is the process of copying ,updating or moving data from one database to another database or same.Normally it is known as database management system.when database was destroyed ,we can have it as a backup file for the database as well. There is a big different between original database and updated database.In database manipulation this would be a useful occasion.

Friday, June 12, 2009

Java Begining..

In middle 1991 one person was looking for a new programming language.That person wanted to configure it as "write once & run in multiple operating systems". That was his concept,itself. Java was born.It allows user to create platform independent applications.Platform independent means our application can be run on any operating environment .This application's source code is specialized for that particular operating environment ,itself.But byte code can be executed on any operating environment.The person who invented java was James Gosling.