Wednesday, 29 October 2014

Beautiful Design Login Page

Login.jsp <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type"...

Friday, 26 September 2014

What is JQuery ?? JQuery Features ??

JQuery is a fast and concise Javascript Library created by John Resig in 2006 with a nice motto : "Write Less, Do More" JQuery simplifies HTML Documents traversing, event handling, animating, and Ajax interactions for rapid web developments. JQuery is a javascript toolkit designed to simplify various tasks by writing less code. Here is the list of important core features supported by JQuery. (adsbygoogle = window.adsbygoogle || []).push({}); JQuery Featues DOM Manipulation: Event Handling AJAX Support Animations Lightweight Cross Browser...

Saturday, 26 July 2014

Write a Program to Prints Prime Numbers using java

package topstechnology;import java.util.*;public class primenumber {    public static void main(String []args)  {    Scanner sc = new Scanner(System.in);    int i,n,res;    boolean flag=true;    System.out.println("Enter the No.");    n = sc.nextInt();   ...

Write a Program to Calculate Fibonacci Series using Do-while Loop for Java

(adsbygoogle = window.adsbygoogle || []).push({}); public class fibonacci {               public static void main(String []args)               {                    ...

Write a Program that calculates and prints the simple interest using the formula : Simple Interest = PNR/100

(adsbygoogle = window.adsbygoogle || []).push({}); import java.util.Scanner;public class Main {    public static void main(String[] args) {        int p,n,r,Ans;        Scanner sc = new Scanner(System.in);        System.out.println("Enter...

Thursday, 17 July 2014

Calculated Value Entered By User Using Java Program

import java.util.Scanner;class first{    Scanner sc = new Scanner(System.in);    void Add()    {            int a,b,c;        System.out.println("Enter the Value of A:");        a=sc.nextInt();   ...

Wednesday, 16 July 2014

Simple Hellow World Program using Java Programming Language

class test{    public static void main(String args[])    {        System.out.println("Hello World:");    }} OutPut : ...

Followers