Posts

Showing posts from November 28, 2016

Yuvraj Singh-Hazel Keech wedding on November 30

A cricketer Yuvraj Singh and model-turned-actress Hazel Keech all set to tie the nuptial knot on November 30, adequate arrangements are being made at spiritual Dera of Baba Ram Singh Ganduan Wale in village Duffera here where the couple will get the blessings of Dera Head Baba Ram Singh.

JSP Example for OUT Implicit Object

JSP Example  for OUT Implicit Object <HTML> <HEAD> <TITLE> OUT IMPLICIT OBJECT EXAMPLE </TITLE> </HEAD> <BODY> <% out . print ( "print statement " ); out . println ( "println" ); out . print ( "Another print statement" ); %> </BODY> </HTML>

Method sum using JSP declaration tag

Method sum using JSP declaration tag <html> <head> <title> Methods Declaration </title> </head> <body>    <%!    int sum ( int num1 , int num2 , int num3 ){    return num1 + num2 + num3 ;    }   %>    <%= "Result is: " + sum ( 10 , 40 , 50 ) %> </body> </html>

JSP two variables inside declaration tag and display them on client using expression tag.

  Two variables inside declaration tag and display them on client using  expression tag . <html> <head> <title> Declaration tag Example1 </title> </head> <body> <%! String name = "Chaitanya" ; %> <%! int age = 27 ; %> <%= "Name is: " + name %> <br> <%= "AGE: " + age %> </body> </html>

JAVA SERVER PAGES

JAVA SERVER PAGES EXAMPLE <%-- JSP comment --%> <HTML> <HEAD> <TITLE> MESSAGE </TITLE> </HEAD> <BODY> <% out . print ( "Hello, Sample JSP code" );%> </BODY> </HTML>