JSP / JSP Tutorial
2007-11-22 JavaServer Pages (JSP) lets you separate the dynamic part of
your pages from the static HTML. You simply write the regular HTML in the normal manner,
using whatever Web-page-building tools you normally use.
You then enclose the code for the dynam ...Read
Arunkumar S,Beginners,
JavaOrigin.com 2007-11-22 JSP scripting elements let you insert Java code into the servlet that will be generated from the current JSP page. There are three forms:
- Expressions of the form
<%= expression %> that are eval ...Read
Arunkumar S,Beginners,
JavaOrigin.com 2007-11-22 A JSP directive affects the overall structure of the servlet class. It usually has the following form: <%@ directive attribute=\"value\" %> However, you can also combine multiple attribute settings for a si ...Read
Arunkumar S,Beginners,
JavaOrigin.com 2007-11-22 To simplify code in JSP expressions and scriptlets,
you are supplied with eight automatically defined
variables, sometimes called implicit objects.
The available variables are request, response,
out, ...Read
Arunkumar S,Beginners,
JavaOrigin.com 2007-11-22 JSP actions use constructs in XML syntax to control the behavior of the servlet engine. You can dynamically insert a file, reuse JavaBeans components, forward the user to another page, or generate HTML for the Java plugin. Available actions ...Read
Arunkumar S,Beginners,
JavaOrigin.com 2007-11-22 There are a small number of special constructs you can use in various cases to insert comments or characters that would otherwise be treated specially. Here's a summary:
...Read
Arunkumar S,Beginners,
JavaOrigin.com
|