formulario_bootcamp.jsp 1.41 KB
Newer Older
Jose Baez committed
1 2
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
3 4 5
    <!DOCTYPE html>
    <html>

6 7
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8
        <link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
9 10
        <title>JSP Page</title>
    </head>
11

12 13 14 15
    <body>
        <div class="container">
            <h1>Crear Bootcamp</h1>

16 17
            <%@ page import="com.roshka.proyectofinal.entity.Lenguaje, com.roshka.proyectofinal.lenguaje.LenguajeDao, java.util.List,java.util.Iterator" %>

18
                <%
19 20 21 22 23
             LenguajeDao lenDao = new LenguajeDao();
             List<Lenguaje> listLenguaje = lenDao.listar();
             Iterator<Lenguaje> iter =  listLenguaje.iterator();
                         Lenguaje len = null;
             %>
24 25 26
                    <form action="" method="post">
                        <label for="lenguaje">Lenguajes:</label>
                        <select name="lenguaje" id="lenguaje">
27 28 29 30 31
                    <% while(iter.hasNext()){
                        len = iter.next();

                    %>
                        <option value=<%= len.getId() %> >
32 33 34 35
                            <%= len.getNombre_lenguaje() %>
                        </option>
                        <% } %>
                    </select>
36
                    </form>
37 38
        </div>
    </body>
39 40

    </html>