hello I have a problem is that I do not know how to get the selected data with checkbox
outside the foreach in the part that says class="text-left" href="< value=" eliminar_dependencia.htm?id="/>"
.. should perform the function
<div class="container-fluid">
<div class="widget-title"> <span class="icon"><i class="icon-envelope"></i></span>
<h5>Administración Dependencias</h5>
<a class="text-left" href="<c:url value=" eliminar_dependencia.htm?id="/>"><span class="icon"><i class="icon-trash"></i></span></a>
<a href="<c:url value=" nueva_dependencia.htm "/>"><span class="icon"><i class="icon-plus"></i></span></a>
</div>
<c:forEach items="${depende}" var="dato">
<tr>
<td><input type="checkbox" name="Selec" value="ON" /></td>
<td>
<c:out value="${dato.idDependencias}" />
</td>
<td>
<c:out value="${dato.nomDependencia}" />
</td>
<td <a href="<c:url value=" eliminar_dependencia.htm?id=${dato.idDependencias} "/>">Eliminar</a>
</td>
</tr>
</c:forEach>