Username: Save?
Password:
Home Forum Links Search Login Register*
    News: Keep The TechnoWorldInc.com Community Clean: Read Guidelines Here.
Recent Updates
[April 24, 2024, 11:48:22 AM]

[April 24, 2024, 11:48:22 AM]

[April 24, 2024, 11:48:22 AM]

[April 24, 2024, 11:48:22 AM]

[April 03, 2024, 06:11:00 PM]

[April 03, 2024, 06:11:00 PM]

[April 03, 2024, 06:11:00 PM]

[April 03, 2024, 06:11:00 PM]

[March 06, 2024, 02:45:27 PM]

[March 06, 2024, 02:45:27 PM]

[March 06, 2024, 02:45:27 PM]

[March 06, 2024, 02:45:27 PM]

[February 14, 2024, 02:00:39 PM]
Subscriptions
Get Latest Tech Updates For Free!
Resources
   Travelikers
   Funistan
   PrettyGalz
   Techlap
   FreeThemes
   Videsta
   Glamistan
   BachatMela
   GlamGalz
   Techzug
   Vidsage
   Funzug
   WorldHostInc
   Funfani
   FilmyMama
   Uploaded.Tech
   MegaPixelShop
   Netens
   Funotic
   FreeJobsInc
   FilesPark
Participate in the fastest growing Technical Encyclopedia! This website is 100% Free. Please register or login using the login box above if you have already registered. You will need to be logged in to reply, make new topics and to access all the areas. Registration is free! Click Here To Register.
+ Techno World Inc - The Best Technical Encyclopedia Online! » Forum » THE TECHNO CLUB [ TECHNOWORLDINC.COM ] » Programming Zone » ASP .NET
 Basic JSP scripting elements
Pages: [1]   Go Down
  Print  
Author Topic: Basic JSP scripting elements  (Read 1337 times)
Mark David
Administrator
Super Elite Member
*****



Karma: 185
Offline Offline

Posts: 1624

!!!Techno King!!!

fabulous_designer
View Profile WWW
Basic JSP scripting elements
« Posted: March 16, 2007, 02:00:27 PM »


Basic JSP scripting elements

JavaServer Pages (JPSs) offer a number of ways to inject Java code into the Servlet code generated when a JSP is compiled.

Scriptlet code elements put the included Java code into the _jspService method. The included code needs to be complete java code (remember the trailing semicolons):

Code:
exciting HTML code 
<% String important = new String("Very important programmer"); %>
more HTML code

Expressions are evaluated and placed into out.print() methods to be written to the output stream. The code included is an expression, not a complete Java statement, so leave off the trailing semicolon:

Code:
HTML tags 
<%= important %>
HTML tags
<%= new java.util.Date() %>

Declaration elements insert the enclosed code into the body of the servlet code allowing the declaration of variables or methods:

Code:
HTML stuff 
<%!  private int counter = 0; %>

Logged

Pages: [1]   Go Up
  Print  
 
Jump to:  

Copyright © 2006-2023 TechnoWorldInc.com. All Rights Reserved. Privacy Policy | Disclaimer
Page created in 0.136 seconds with 24 queries.