JSP In Class Assg 1 Do same thing using JSP tags instead of scripting tags Chapter 9 © copyright Janson Industries 2011.

Slides:



Advertisements
Similar presentations
Anatomy of a Web Page. Parts of a Web Page Title Bar Navigation Tool Bar Location Bar Header Graphic/Image Text Horizontal Rule Links.
Advertisements

For(int i = 1; i
MASTERY OBJECTIVE: Learn parts of an html document Learn basic html tags HTML-An Introduction.
 CSS ids  Pages  Sites  HTML: class=“name”  Names may define format OR content › Either works  CAN apply multiple classes to the same tag  Multiple.
Chapter 4_2 Marking Up With Html: A Hypertext Markup Language Primer.
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
Three types of scripting elements: 1.Expressions 2.Scriptlets 3.Declarations Scripting elements.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 30 – Bookstore Application: Client Tier Introducing.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
My Homepage Welcome to my Homepage! SPOT THE BUG No closing title tag.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 8 Key Concepts 1 Copyright © Terry Felke-Morris.
Chapter 9 Using JSTL. Sometimes you need more than EL or standard actions What if you want to loop through the data in an array, and display one item.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 8 Key Concepts 1 Copyright © Terry Felke-Morris.
10 When even JSTL is not enough: custom tag development Sometimes JSTL and standard actions aren’t enough. When you need something custom, and you don’t.
STRUCTURE OF JSP PRESENTED BY: SIDDHARTHA SINGH ( ) SOMYA SHRIVASTAV ( ) SONAM JINDAL ( )
This shows CIS17 and the first day introduction..
HTML NOTES October 6, Starting a document and saving  Always use notepad  Use _ for spaces otherwise it won’t work  When saving make sure you.
Step 1: Starting an HTML Document: Right Click: new>text document.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML Headers/Parag raphs. How to make a heading  Page Title This is a Heading This is a paragraph.
Title of PowerPoint Name Grade-Class Date. The Systems of the Human body System #1 System #2 System #3 System #4 System #5 System #6.
Presentation Title.
Presentation Title.
Getting Started – Basic Page Structure
JSP java server pages.
CSE 3! By Emma Sasson CSE Online Webpage HTML WORD EXCEL ALICE
HTML 101.
Web Development & Design Foundations with HTML5 8th Edition
Presentation Title Here
Copyrights apply.
BACK SOLUTION:
Most tags must have an open and a close in XHTML.
Practice: first_document.html
JSP Syntax.
In Class Assg 4 - Solution
In Class Assg 3 - Solution
Chapter 27 WWW and HTTP.
Servlets and JSP 20-Nov-18 servletsJSP.ppt.
מבנה בסיסי של מסמך html מסמך ב- html מורכב מתגיות.
In Class Assg 2 - solution
© copyright Janson Industries 2011
كار همراه با آسودگي و امنيت
© copyright Janson Industries 2011
with a value of javascript:onclick=resizeWindow()
Title of Pod Unit Number – Unit Name.
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
Group 1 Group 1 Group 1 Group 1 word word word word word word word word word word word word word word word word word word word word word word word.
Unit 2 Test Building a Web Page Test.
Start the Installation Manager by clicking:
Intro to Programming & Algorithm Design
HTML Basic Structure.
For this assignment, copy and past the XHTML to a notepad file with the .html extension. Then add the code I ask for to complete the problems.
Common Page Design Elements
Title to go here Subtitle to go here.
The language of the internet
The language of the internet
Type your presentation title here
Presentation Title Your information.
Title Author Date, Time Title Text Subtitle Body Level One Body Level Two Body Level Three.
Thing / Person:____________________ Dates:_________________
Chapter 6.
This is an introduction to JavaScript using the examples found at the CIS17 website. In previous examples I specified language = Javascript, instead of.
Headline of Presentation Here
TITLE OF PRESENTATION Name of Presenter.
Title: Date: Cause: Event: Effect: Title: Title: Title: Date: Cause:
Sample Title for College of Health Solutions
Solution Free Body Diagram.
Presentation transcript:

JSP In Class Assg 1 Do same thing using JSP tags instead of scripting tags Chapter 9 © copyright Janson Industries 2011

In Class Assg 1 - solution <HTML> <HEAD> <TITLE> JSP Example </TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> <jsp:scriptlet> for (int i = 0; i < 5; i++) { </jsp:scriptlet> <P>Howdy from the JSP example.</P> <jsp:scriptlet> } </jsp:scriptlet> <P>The current date and time is: <jsp:expression> new java.util.Date() </jsp:expression> </P> </BODY> </HTML> Chapter 8 © copyright Janson Industries 2011