-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadenas.jsp
65 lines (50 loc) · 1.43 KB
/
cadenas.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<!-- <link rel='stylesheet' type='text/css' media='screen' href='css/formularios.css'> -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script src='main.js'></script>
<title>Clase 02 - Web Services</title>
</head>
<body>
<div class="jumbotron text-center">
<h1>Java EE</h1>
<h2>Mi primer Servicio Web - Cliente</h2>
</div>
<%
String cadena = (String) request.getAttribute("cadena");
if (cadena != null) {
%>
<div class="container">
<div class="media">
<div class="media-left">
<img src="img/Perfil 4 CF.jpeg" class="media-object"
style="width: 150px">
</div>
<div class="media-body">
<h4 class="media-heading">Cadena Transformada</h4>
<p><%=cadena%></p>
<div></div>
</div>
</div>
</div>
<div class="container">
<a href="index.jsp" class=" btn btn-link" role="button">volver</a>
</div>
<%
} else {
response.sendRedirect("index.jsp");
}
%>
</body>
</html>