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 !!
Ad

More Related Content

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

Jsp
JspJsp
Jsp
DEEPAK SHEOGAN
 
Developing Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationDeveloping Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web Application
Mark Gu
 
Lessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX ExperiencesLessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX Experiences
goodfriday
 
Lessons
LessonsLessons
Lessons
guest1019f4
 
web development 7.pptx
web development 7.pptxweb development 7.pptx
web development 7.pptx
harshit762481
 
Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application development
zonathen
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overview
skill-guru
 
JavaScript
JavaScriptJavaScript
JavaScript
Gulbir Chaudhary
 
Migration from ASP to ASP.NET
Migration from ASP to ASP.NETMigration from ASP to ASP.NET
Migration from ASP to ASP.NET
Information Technology
 
Using Ajax In Domino Web Applications
Using Ajax In Domino Web ApplicationsUsing Ajax In Domino Web Applications
Using Ajax In Domino Web Applications
dominion
 
JSP - Java Server Page
JSP - Java Server PageJSP - Java Server Page
JSP - Java Server Page
Vipin Yadav
 
Online test management system
Online test management systemOnline test management system
Online test management system
Prateek Agarwak
 
e-suap - client technologies- english version
e-suap - client technologies- english versione-suap - client technologies- english version
e-suap - client technologies- english version
Sabino Labarile
 
Html5
Html5Html5
Html5
mikusuraj
 
Ibm
IbmIbm
Ibm
techbed
 
Spatial approximate string search Doc
Spatial approximate string search DocSpatial approximate string search Doc
Spatial approximate string search Doc
Sudha Hari Tech Solution Pvt ltd
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep Dive
Gabriel Walt
 
technology@web
technology@webtechnology@web
technology@web
Dinesh kumar
 
Ta Javaserverside Eran Toch
Ta Javaserverside Eran TochTa Javaserverside Eran Toch
Ta Javaserverside Eran Toch
Adil Jafri
 
Overview of atg framework
Overview of atg frameworkOverview of atg framework
Overview of atg framework
Yousuf Roushan
 
Developing Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationDeveloping Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web Application
Mark Gu
 
Lessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX ExperiencesLessons from the Trenches: Engineering Great AJAX Experiences
Lessons from the Trenches: Engineering Great AJAX Experiences
goodfriday
 
web development 7.pptx
web development 7.pptxweb development 7.pptx
web development 7.pptx
harshit762481
 
Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application development
zonathen
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overview
skill-guru
 
Using Ajax In Domino Web Applications
Using Ajax In Domino Web ApplicationsUsing Ajax In Domino Web Applications
Using Ajax In Domino Web Applications
dominion
 
JSP - Java Server Page
JSP - Java Server PageJSP - Java Server Page
JSP - Java Server Page
Vipin Yadav
 
Online test management system
Online test management systemOnline test management system
Online test management system
Prateek Agarwak
 
e-suap - client technologies- english version
e-suap - client technologies- english versione-suap - client technologies- english version
e-suap - client technologies- english version
Sabino Labarile
 
AEM Sightly Deep Dive
AEM Sightly Deep DiveAEM Sightly Deep Dive
AEM Sightly Deep Dive
Gabriel Walt
 
Ta Javaserverside Eran Toch
Ta Javaserverside Eran TochTa Javaserverside Eran Toch
Ta Javaserverside Eran Toch
Adil Jafri
 
Overview of atg framework
Overview of atg frameworkOverview of atg framework
Overview of atg framework
Yousuf Roushan
 

Recently uploaded (20)

Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 
fluke dealers in bangalore..............
fluke dealers in bangalore..............fluke dealers in bangalore..............
fluke dealers in bangalore..............
Haresh Vaswani
 
railway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forgingrailway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forging
Javad Kadkhodapour
 
DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...
DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...
DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...
charlesdick1345
 
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Journal of Soft Computing in Civil Engineering
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.
anuragmk56
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
π0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalizationπ0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalization
NABLAS株式会社
 
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptxExplainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
MahaveerVPandit
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)
samueljackson3773
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 
fluke dealers in bangalore..............
fluke dealers in bangalore..............fluke dealers in bangalore..............
fluke dealers in bangalore..............
Haresh Vaswani
 
railway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forgingrailway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forging
Javad Kadkhodapour
 
DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...
DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...
DATA-DRIVEN SHOULDER INVERSE KINEMATICS YoungBeom Kim1 , Byung-Ha Park1 , Kwa...
charlesdick1345
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.
anuragmk56
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
π0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalizationπ0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalization
NABLAS株式会社
 
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptxExplainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
MahaveerVPandit
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)
samueljackson3773
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
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: