Request header display in a JSP : Basics : JSP : Java examples (example source code) Organized by topic

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JSP
19. JSTL
20. Language Basics
21. Network Protocol
22. PDF RTF
23. Regular Expressions
24. Security
25. Servlets
26. Spring
27. Swing Components
28. Swing JFC
29. SWT JFace Eclipse
30. Threads
31. Tiny Application
32. Velocity
33. XML
Java Tutorial
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » JSP » BasicsScreenshots 
Request header display in a JSP

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>

<html>
<head><title>Request header display</title></head>
<body>
<h2>Here are all the Request Headers</h2>

<c:forEach var="reqHead" items="${header}">

    <strong><c:out value=
        "${reqHead.key}"/></strong>: <c:out value="${reqHead.value}"/><br />
        
</c:forEach>


</body>
</html>


           
       
Related examples in the same category
1. JSP Passing Parameters
2. Simplest Jsp page: A Web Page
3. Output: Creating a Greeting
4. Simple JSP outputSimple JSP output
5. Simple JSP page to display the random number
6. Comments in JSP page
7. Declaration Tag Example
8. Declaration Tag - Methods
9. Expression Language Examples
10. Passing parameters
11. JSP Initialization
12. Welcome page and top level URL
13. JSP Expression Language
14. JSP without beans
15. Multiple Declaration
16. Embedding Code
17. pwd -- print working directory
18. JSP post
19. JSP Post Data Viewer
20. JSP in J2EE
21. JSP Performance
22. JSP Best Practices and Tools
23. JSP Model 2JSP Model 2
24. JSP: expression language 2JSP: expression language 2
25. JSP Basics: Dynamic Page Creation for Data Presentation 2JSP Basics: Dynamic Page Creation for Data Presentation 2
26. JSP Directives: your page
27. JSP Directives
28. JSP Basics ch02 JSP Basics ch02
29. JSP Basics: Generalized Templating and Server Scripting 1JSP Basics: Generalized Templating and Server Scripting 1
30. JSP Basics: Generalized Templating and Server Scripting 2JSP Basics: Generalized Templating and Server Scripting 2
31. JSP Basics: Generalized Templating and Server Scripting 3JSP Basics: Generalized Templating and Server Scripting 3
32. CSS, JavaScript, VBScript, and JSP 1CSS, JavaScript, VBScript, and JSP 1
33. CSS, JavaScript, VBScript, and JSP 2CSS, JavaScript, VBScript, and JSP 2
34. Advanced Dynamic Web Content Generation. 1Advanced Dynamic Web Content Generation. 1
Home | Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.