<div class="row-fluid">
<div class="span12"style="overflow-y:auto;">
<h1 class="text-center" style="margin-bottom:1em;"><strong>Porcentaje Personal Capacitado</strong></h1>
<table id="lista" class="table table-hover table-bordered bootstrap-datatable datatable dataTable">
<caption></caption>
<thead>
<tr>
<th>Mes</th>
<th>Año</th>
<th>Personal</th>
<th>% mensual de capacitacion</th>
</tr>
</thead>
<tbody>
<% for i = lbound(datos ,2) to ubound(datos ,2)%>
<tr>
<td><%=i+1%></td>
<!--Descripción-->
<td><%=datos(1,i)%></td>
<!--Glosa-->
<td><%=datos(2,i)%></td>
<td><%=((datos(2,i)*100)/datos(3,i))%>%</td>
<!--F Registro-->
</tr>
<% next %>
</tbody>
</table>
</div>
</div>
<%
end if
Function UltimoDiaDeMes(iMonth, iYear)
dim SDate,MesSiguiente
SDate = DateSerial(iYear, iMonth, "01")
MesSiguiente = DateAdd("m", 1, SDate)
UltimoDiaDeMes = Day(DateAdd("d", -1, MesSiguiente))
End Function
%>