SlideShare a Scribd company logo
PROJECT REPORT
on
JSP ,AJAX &Web
development
Overview
 Introduction of JSP
 Why we learn JSP?
 Architecture of JSP
 JSP Execution Procedure
 What is a JSP Page?
 Example of JSP Page
 Scripting Elements in JSP
 Predefined Variables-Implicit Objects in JSP
Introduction: what is JSP?
 Java Server Pages(JSP) is a server side technology that
simplifies the developing of dynamic web sites.
 It is a technology developed by Sun Microsystems in
1999.
 JSP pages are HTML pages with embedded code that
allows to access data from Java code running on the
server.
 JSP technology is a key component in the Java2 platform
enterprise edition.
Why we learn JSP?
 coding in JSP is easy.
 Reduction in the length of code.
 Connection to database is easier.
 Make interactive websites.
 Portable , Powerful , flexible and easy to
maintain.
 Easier to read data from user.
 Tracking the user.
Architecture of JSP
JSP Execution Procedure
What is JSP Page?
A JSP page is a page created by the web developer that
include JSP technology specific and custom tags,in
combination with other static tags.A JSP page has the
extension .jsp or .jspx this signals to the web server that
the JSP engine will process elements on this page.using
the web xml deployment descripter,additional extensions
can be associated with the JSP engine.
Simple JSP page
<html>
<h1> First JSP Page </h1>
<body>
<% out.println(“welcome”);%>
</body>
</html>
Scriping Elements in Jsp
1. Scriptlet Tag in JSP
 In JSP,Java code can be written inside the JSP page
using Scriptlet tag.
Syntax:
<% java source code %>
Example:
<html>
<body>
<% out.print(“Hello”); %>
</body>
</html>
2.Expression Tag
 Code placed within expression tag is written to the output stream
of the response.So,no need to write out.print() to write data.
Syntax:
<%= Statement %>
Example:
<html>
<body>
<%= “Hello world” %>
</body>
</html>
3.Declaration Tag
 Is used to declare fields and methods.The code written inside this
tag is placed outside the service() method of auto generated
servlet.
Syntax:
<%! Statement %>
Example:
<html>
<body>
<%! int data=60; %>
<%= “value is: “ +data %>
</body>
</html>
Session implicit object
 The Java developer can use this object to set , get or remove attribute or to
get session information.
Request implicit object
 Access to information associated with a request.This object is normally used
in looking up parameter values and cookies.
<% String str = request.getParameter(“uname”); %>
Exception implicit object
 This object can be used to print the exception. But it can only be used in error pages.
out implicit object
 For writing any data to the buffer , JSP provides an implicit object names out.
Syntax:
out.print();
Predefined Variable - implicit objects in JSP
Web
Development
Languages
What is HTML?
 HTML stands for Hyper Text Markup Language is the main markup
language for creating web pages and other information that can be
displayed in a web browser.
What is CSS?
CSS stands for Cascading Style Sheets.
Styles define how to display HTML elements.
Its most common application is to style web page written in HTML
and XHTML.
HTML5
 HTML5 is a markup language for structuring and processing
content for the World Wide Web and a core technology of the
internet.
 It extends, improves and rationalises the markup available for
documents, and introduces markup and application programming
interfaces(APIs) for complex web applications.
 For the same reasons, HTML5 is also a potential candidate for
cross-platform mobile applications.
Features of HTML5
 Offline/Storage
 Multimedia
 Graphics
 Semantics and Markup
HTML5 offers new semantic elements to clearly define different
parts of a web page:
Semantic elements = Elements with Meaning
 <header>
 <nav>
 <Section>
 <article>
 <figcaption>
 <figure>
 <footer>
CSS3
 CSS is used to control the style and layout of web pages.
CSS3 Modules:
 CSS3 is split up into “modules”.The old specification has been split
into smaller pieces and new are also added.
 Some of the most important CSS3 modules are.
 Selectors
 Box Model
 Backgrounds and Borders
 Text Effects
 Animations
 2D/3D Transformations
CSS3 Transformation
 In CSS3,we can move ,scale , turn,spin and stretch elements.
A transformation is an effect that change element shape , size and
position.
CSS3 2D Transformation methods:
 translate()
 rotate()
 scale()
 skew()
translate() method-
rotate() method-
scale() method-
CSS3 Borders
 In CSS3 the following border properties are:
border-radius
border-shadow
border-image
Border-radius:
 In CSS3,the border property is used to create rounded corners.
Example:
div{
border:2px solid;
border-radius:25px;
}
AJAX
 Ajax stands for Asynchronous JavaScript and XML.
What is AJAX?
Not a language itself
A group of related exiting technology compiled together or
technique to make web pages feel more responsive.
Makes interactive web pages by providing a way for the web
page to interact with the server.
AJAX is a framework
Why AJAX is important?
 AJAX enables a much better user experience for Web sites and
applications.
 By using AJAX we can load a specific portions of a page that need to be
changed.
 It further reduce network traffic.
The Core Components:
 HTML & CSS- for presenting.
 JavaScript-for local processing.
 Document Object Model(DOM)- to access data inside the page or
to access elements of an XML file on the server.
 XMLHttpRequest object- to read/send data to the server
asynchronously.
XML HttpRequest Object Properties:
Example of Ajax:
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("GET", "ajax_info.txt", true);
xhttp.send();
}
</script>
Process Cycle
Benefits of using AJAX:
 Helps to build fast , dynamic websites.
 Improves sharing of resources: it facilitates to use the power of all
the client computer rather than just a unique server and network.
 Ajax allows to perform processing on client computer(in JavaScript)
with data taken from the server thereby reducing server load by
moving a part of server functionality to client side.
 Ajax can selectively modify a part of a page displayed by the browser
, and update it without the need to reload the whole document with
all images , menus etc. This bridges the gap between desktop
and web applications.
REGISTRATION PAGE:
ADMIN PAGE:
ADMIN TABLE:
Login page:
Hall booking details:
View booking details:
Based on user id:
Based on dates:
Based on hall id:
Based on user id and date:
THANK YOU !!

More Related Content

PPTX
Ajax presentation
PDF
web development
PPTX
25444215.pptx
PPTX
WELCOME (recovernjkgnjvnvnfjkvnjknnbfjked).pptx
PPTX
WEB DEVELOPMENT.pptx
PPTX
025444215.pptx
PPTX
Web dev-101
ODP
Web 2.0
Ajax presentation
web development
25444215.pptx
WELCOME (recovernjkgnjvnvnfjkvnjknnbfjked).pptx
WEB DEVELOPMENT.pptx
025444215.pptx
Web dev-101
Web 2.0

Similar to PPT on javascript ajax and css and some points related to server (20)

PPTX
web development
PDF
Making Of PHP Based Web Application
PDF
Basics of Web Designing Languages
PPTX
HTML5 introduction for beginners
PPTX
Getting Started with Web
PPT
Decoding the Web
PPTX
Introduction to HTML language Web design.pptx
PPT
Client Side Technologies
PPT
HTML5 Presentation
PPTX
Rohit&kunjan
PDF
Abhilash front end ppt.pdf
PPT
INTRO TO JAVASCRIPT basic to adcance.ppt
ODP
Html5
PPTX
HTML, Javascript and AJAX
PPTX
saikiran front end ppt.pptx
PPTX
1 Intro of web technology and sciences .pptx
PPT
Introduction to web development
PPTX
Ajax
PPT
Web Designing
web development
Making Of PHP Based Web Application
Basics of Web Designing Languages
HTML5 introduction for beginners
Getting Started with Web
Decoding the Web
Introduction to HTML language Web design.pptx
Client Side Technologies
HTML5 Presentation
Rohit&kunjan
Abhilash front end ppt.pdf
INTRO TO JAVASCRIPT basic to adcance.ppt
Html5
HTML, Javascript and AJAX
saikiran front end ppt.pptx
1 Intro of web technology and sciences .pptx
Introduction to web development
Ajax
Web Designing
Ad

Recently uploaded (20)

PPTX
Lecture Notes Electrical Wiring System Components
PPT
Project quality management in manufacturing
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
Construction Project Organization Group 2.pptx
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Sustainable Sites - Green Building Construction
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
additive manufacturing of ss316l using mig welding
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Geodesy 1.pptx...............................................
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
Lecture Notes Electrical Wiring System Components
Project quality management in manufacturing
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Construction Project Organization Group 2.pptx
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Operating System & Kernel Study Guide-1 - converted.pdf
Sustainable Sites - Green Building Construction
CYBER-CRIMES AND SECURITY A guide to understanding
additive manufacturing of ss316l using mig welding
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
CH1 Production IntroductoryConcepts.pptx
Model Code of Practice - Construction Work - 21102022 .pdf
Internet of Things (IOT) - A guide to understanding
Geodesy 1.pptx...............................................
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Automation-in-Manufacturing-Chapter-Introduction.pdf
Ad

PPT on javascript ajax and css and some points related to server

  • 1. PROJECT REPORT on JSP ,AJAX &Web development
  • 2. Overview  Introduction of JSP  Why we learn JSP?  Architecture of JSP  JSP Execution Procedure  What is a JSP Page?  Example of JSP Page  Scripting Elements in JSP  Predefined Variables-Implicit Objects in JSP
  • 3. Introduction: what is JSP?  Java Server Pages(JSP) is a server side technology that simplifies the developing of dynamic web sites.  It is a technology developed by Sun Microsystems in 1999.  JSP pages are HTML pages with embedded code that allows to access data from Java code running on the server.  JSP technology is a key component in the Java2 platform enterprise edition.
  • 4. Why we learn JSP?  coding in JSP is easy.  Reduction in the length of code.  Connection to database is easier.  Make interactive websites.  Portable , Powerful , flexible and easy to maintain.  Easier to read data from user.  Tracking the user.
  • 7. What is JSP Page? A JSP page is a page created by the web developer that include JSP technology specific and custom tags,in combination with other static tags.A JSP page has the extension .jsp or .jspx this signals to the web server that the JSP engine will process elements on this page.using the web xml deployment descripter,additional extensions can be associated with the JSP engine.
  • 8. Simple JSP page <html> <h1> First JSP Page </h1> <body> <% out.println(“welcome”);%> </body> </html>
  • 9. Scriping Elements in Jsp 1. Scriptlet Tag in JSP  In JSP,Java code can be written inside the JSP page using Scriptlet tag. Syntax: <% java source code %> Example: <html> <body> <% out.print(“Hello”); %> </body> </html>
  • 10. 2.Expression Tag  Code placed within expression tag is written to the output stream of the response.So,no need to write out.print() to write data. Syntax: <%= Statement %> Example: <html> <body> <%= “Hello world” %> </body> </html>
  • 11. 3.Declaration Tag  Is used to declare fields and methods.The code written inside this tag is placed outside the service() method of auto generated servlet. Syntax: <%! Statement %> Example: <html> <body> <%! int data=60; %> <%= “value is: “ +data %> </body> </html>
  • 12. Session implicit object  The Java developer can use this object to set , get or remove attribute or to get session information. Request implicit object  Access to information associated with a request.This object is normally used in looking up parameter values and cookies. <% String str = request.getParameter(“uname”); %> Exception implicit object  This object can be used to print the exception. But it can only be used in error pages. out implicit object  For writing any data to the buffer , JSP provides an implicit object names out. Syntax: out.print(); Predefined Variable - implicit objects in JSP
  • 14. What is HTML?  HTML stands for Hyper Text Markup Language is the main markup language for creating web pages and other information that can be displayed in a web browser. What is CSS? CSS stands for Cascading Style Sheets. Styles define how to display HTML elements. Its most common application is to style web page written in HTML and XHTML.
  • 15. HTML5  HTML5 is a markup language for structuring and processing content for the World Wide Web and a core technology of the internet.  It extends, improves and rationalises the markup available for documents, and introduces markup and application programming interfaces(APIs) for complex web applications.  For the same reasons, HTML5 is also a potential candidate for cross-platform mobile applications.
  • 16. Features of HTML5  Offline/Storage  Multimedia  Graphics  Semantics and Markup
  • 17. HTML5 offers new semantic elements to clearly define different parts of a web page: Semantic elements = Elements with Meaning  <header>  <nav>  <Section>  <article>  <figcaption>  <figure>  <footer>
  • 18. CSS3  CSS is used to control the style and layout of web pages. CSS3 Modules:  CSS3 is split up into “modules”.The old specification has been split into smaller pieces and new are also added.  Some of the most important CSS3 modules are.  Selectors  Box Model  Backgrounds and Borders  Text Effects  Animations  2D/3D Transformations
  • 19. CSS3 Transformation  In CSS3,we can move ,scale , turn,spin and stretch elements. A transformation is an effect that change element shape , size and position. CSS3 2D Transformation methods:  translate()  rotate()  scale()  skew()
  • 21. CSS3 Borders  In CSS3 the following border properties are: border-radius border-shadow border-image Border-radius:  In CSS3,the border property is used to create rounded corners. Example: div{ border:2px solid; border-radius:25px; }
  • 22. AJAX  Ajax stands for Asynchronous JavaScript and XML. What is AJAX? Not a language itself A group of related exiting technology compiled together or technique to make web pages feel more responsive. Makes interactive web pages by providing a way for the web page to interact with the server. AJAX is a framework
  • 23. Why AJAX is important?  AJAX enables a much better user experience for Web sites and applications.  By using AJAX we can load a specific portions of a page that need to be changed.  It further reduce network traffic.
  • 24. The Core Components:  HTML & CSS- for presenting.  JavaScript-for local processing.  Document Object Model(DOM)- to access data inside the page or to access elements of an XML file on the server.  XMLHttpRequest object- to read/send data to the server asynchronously.
  • 25. XML HttpRequest Object Properties:
  • 26. Example of Ajax: <script> function loadDoc() { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.getElementById("demo").innerHTML = this.responseText; } }; xhttp.open("GET", "ajax_info.txt", true); xhttp.send(); } </script>
  • 28. Benefits of using AJAX:  Helps to build fast , dynamic websites.  Improves sharing of resources: it facilitates to use the power of all the client computer rather than just a unique server and network.  Ajax allows to perform processing on client computer(in JavaScript) with data taken from the server thereby reducing server load by moving a part of server functionality to client side.  Ajax can selectively modify a part of a page displayed by the browser , and update it without the need to reload the whole document with all images , menus etc. This bridges the gap between desktop and web applications.
  • 38. Based on user id and date: