<%@LANGUAGE="JAVASCRIPT"%> <% var prof_calidad = Server.CreateObject("ADODB.Recordset"); prof_calidad.ActiveConnection = MM_profesionales_STRING; prof_calidad.Source = "SELECT * FROM calidad"; prof_calidad.CursorType = 0; prof_calidad.CursorLocation = 2; prof_calidad.LockType = 3; prof_calidad.Open(); var prof_calidad_numRows = 0; %> <% var prof_cimentaciones = Server.CreateObject("ADODB.Recordset"); prof_cimentaciones.ActiveConnection = MM_profesionales_STRING; prof_cimentaciones.Source = "SELECT * FROM cimentaciones"; prof_cimentaciones.CursorType = 0; prof_cimentaciones.CursorLocation = 2; prof_cimentaciones.LockType = 3; prof_cimentaciones.Open(); var prof_cimentaciones_numRows = 0; %> <% var prof_construccion = Server.CreateObject("ADODB.Recordset"); prof_construccion.ActiveConnection = MM_profesionales_STRING; prof_construccion.Source = "SELECT * FROM construccion"; prof_construccion.CursorType = 0; prof_construccion.CursorLocation = 2; prof_construccion.LockType = 3; prof_construccion.Open(); var prof_construccion_numRows = 0; %> <% var prof_estructuras = Server.CreateObject("ADODB.Recordset"); prof_estructuras.ActiveConnection = MM_profesionales_STRING; prof_estructuras.Source = "SELECT * FROM estructuras"; prof_estructuras.CursorType = 0; prof_estructuras.CursorLocation = 2; prof_estructuras.LockType = 3; prof_estructuras.Open(); var prof_estructuras_numRows = 0; %> <% var prof_hidrologia = Server.CreateObject("ADODB.Recordset"); prof_hidrologia.ActiveConnection = MM_profesionales_STRING; prof_hidrologia.Source = "SELECT * FROM hidrologia"; prof_hidrologia.CursorType = 0; prof_hidrologia.CursorLocation = 2; prof_hidrologia.LockType = 3; prof_hidrologia.Open(); var prof_hidrologia_numRows = 0; %> <% var prof_mambiente = Server.CreateObject("ADODB.Recordset"); prof_mambiente.ActiveConnection = MM_profesionales_STRING; prof_mambiente.Source = "SELECT * FROM mambiente"; prof_mambiente.CursorType = 0; prof_mambiente.CursorLocation = 2; prof_mambiente.LockType = 3; prof_mambiente.Open(); var prof_mambiente_numRows = 0; %> <% var prof_seguridad = Server.CreateObject("ADODB.Recordset"); prof_seguridad.ActiveConnection = MM_profesionales_STRING; prof_seguridad.Source = "SELECT * FROM seguridad"; prof_seguridad.CursorType = 0; prof_seguridad.CursorLocation = 2; prof_seguridad.LockType = 3; prof_seguridad.Open(); var prof_seguridad_numRows = 0; %> <% var prof_vias = Server.CreateObject("ADODB.Recordset"); prof_vias.ActiveConnection = MM_profesionales_STRING; prof_vias.Source = "SELECT * FROM vias"; prof_vias.CursorType = 0; prof_vias.CursorLocation = 2; prof_vias.LockType = 3; prof_vias.Open(); var prof_vias_numRows = 0; %> <% var prof_hidraulica = Server.CreateObject("ADODB.Recordset"); prof_hidraulica.ActiveConnection = MM_profesionales_STRING; prof_hidraulica.Source = "SELECT * FROM hidraulica"; prof_hidraulica.CursorType = 0; prof_hidraulica.CursorLocation = 2; prof_hidraulica.LockType = 3; prof_hidraulica.Open(); var prof_hidraulica_numRows = 0; %> <% var prof_sanitaria = Server.CreateObject("ADODB.Recordset"); prof_sanitaria.ActiveConnection = MM_profesionales_STRING; prof_sanitaria.Source = "SELECT * FROM sanitaria"; prof_sanitaria.CursorType = 0; prof_sanitaria.CursorLocation = 2; prof_sanitaria.LockType = 3; prof_sanitaria.Open(); var prof_sanitaria_numRows = 0; %> <% var prof_puertos = Server.CreateObject("ADODB.Recordset"); prof_puertos.ActiveConnection = MM_profesionales_STRING; prof_puertos.Source = "SELECT * FROM puertos"; prof_puertos.CursorType = 0; prof_puertos.CursorLocation = 2; prof_puertos.LockType = 3; prof_puertos.Open(); var prof_puertos_numRows = 0; %> <% var prof_topografia = Server.CreateObject("ADODB.Recordset"); prof_topografia.ActiveConnection = MM_profesionales_STRING; prof_topografia.Source = "SELECT * FROM topografia"; prof_topografia.CursorType = 0; prof_topografia.CursorLocation = 2; prof_topografia.LockType = 3; prof_topografia.Open(); var prof_topografia_numRows = 0; %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_calidad_total = prof_calidad.RecordCount; // set the number of rows displayed on this page if (prof_calidad_numRows < 0) { // if repeat region set to all records prof_calidad_numRows = prof_calidad_total; } else if (prof_calidad_numRows == 0) { // if no repeat regions prof_calidad_numRows = 1; } // set the first and last displayed record var prof_calidad_first = 1; var prof_calidad_last = prof_calidad_first + prof_calidad_numRows - 1; // if we have the correct record count, check the other stats if (prof_calidad_total != -1) { prof_calidad_numRows = Math.min(prof_calidad_numRows, prof_calidad_total); prof_calidad_first = Math.min(prof_calidad_first, prof_calidad_total); prof_calidad_last = Math.min(prof_calidad_last, prof_calidad_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_cimentaciones_total = prof_cimentaciones.RecordCount; // set the number of rows displayed on this page if (prof_cimentaciones_numRows < 0) { // if repeat region set to all records prof_cimentaciones_numRows = prof_cimentaciones_total; } else if (prof_cimentaciones_numRows == 0) { // if no repeat regions prof_cimentaciones_numRows = 1; } // set the first and last displayed record var prof_cimentaciones_first = 1; var prof_cimentaciones_last = prof_cimentaciones_first + prof_cimentaciones_numRows - 1; // if we have the correct record count, check the other stats if (prof_cimentaciones_total != -1) { prof_cimentaciones_numRows = Math.min(prof_cimentaciones_numRows, prof_cimentaciones_total); prof_cimentaciones_first = Math.min(prof_cimentaciones_first, prof_cimentaciones_total); prof_cimentaciones_last = Math.min(prof_cimentaciones_last, prof_cimentaciones_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_construccion_total = prof_construccion.RecordCount; // set the number of rows displayed on this page if (prof_construccion_numRows < 0) { // if repeat region set to all records prof_construccion_numRows = prof_construccion_total; } else if (prof_construccion_numRows == 0) { // if no repeat regions prof_construccion_numRows = 1; } // set the first and last displayed record var prof_construccion_first = 1; var prof_construccion_last = prof_construccion_first + prof_construccion_numRows - 1; // if we have the correct record count, check the other stats if (prof_construccion_total != -1) { prof_construccion_numRows = Math.min(prof_construccion_numRows, prof_construccion_total); prof_construccion_first = Math.min(prof_construccion_first, prof_construccion_total); prof_construccion_last = Math.min(prof_construccion_last, prof_construccion_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_estructuras_total = prof_estructuras.RecordCount; // set the number of rows displayed on this page if (prof_estructuras_numRows < 0) { // if repeat region set to all records prof_estructuras_numRows = prof_estructuras_total; } else if (prof_estructuras_numRows == 0) { // if no repeat regions prof_estructuras_numRows = 1; } // set the first and last displayed record var prof_estructuras_first = 1; var prof_estructuras_last = prof_estructuras_first + prof_estructuras_numRows - 1; // if we have the correct record count, check the other stats if (prof_estructuras_total != -1) { prof_estructuras_numRows = Math.min(prof_estructuras_numRows, prof_estructuras_total); prof_estructuras_first = Math.min(prof_estructuras_first, prof_estructuras_total); prof_estructuras_last = Math.min(prof_estructuras_last, prof_estructuras_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_hidrologia_total = prof_hidrologia.RecordCount; // set the number of rows displayed on this page if (prof_hidrologia_numRows < 0) { // if repeat region set to all records prof_hidrologia_numRows = prof_hidrologia_total; } else if (prof_hidrologia_numRows == 0) { // if no repeat regions prof_hidrologia_numRows = 1; } // set the first and last displayed record var prof_hidrologia_first = 1; var prof_hidrologia_last = prof_hidrologia_first + prof_hidrologia_numRows - 1; // if we have the correct record count, check the other stats if (prof_hidrologia_total != -1) { prof_hidrologia_numRows = Math.min(prof_hidrologia_numRows, prof_hidrologia_total); prof_hidrologia_first = Math.min(prof_hidrologia_first, prof_hidrologia_total); prof_hidrologia_last = Math.min(prof_hidrologia_last, prof_hidrologia_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_mambiente_total = prof_mambiente.RecordCount; // set the number of rows displayed on this page if (prof_mambiente_numRows < 0) { // if repeat region set to all records prof_mambiente_numRows = prof_mambiente_total; } else if (prof_mambiente_numRows == 0) { // if no repeat regions prof_mambiente_numRows = 1; } // set the first and last displayed record var prof_mambiente_first = 1; var prof_mambiente_last = prof_mambiente_first + prof_mambiente_numRows - 1; // if we have the correct record count, check the other stats if (prof_mambiente_total != -1) { prof_mambiente_numRows = Math.min(prof_mambiente_numRows, prof_mambiente_total); prof_mambiente_first = Math.min(prof_mambiente_first, prof_mambiente_total); prof_mambiente_last = Math.min(prof_mambiente_last, prof_mambiente_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_seguridad_total = prof_seguridad.RecordCount; // set the number of rows displayed on this page if (prof_seguridad_numRows < 0) { // if repeat region set to all records prof_seguridad_numRows = prof_seguridad_total; } else if (prof_seguridad_numRows == 0) { // if no repeat regions prof_seguridad_numRows = 1; } // set the first and last displayed record var prof_seguridad_first = 1; var prof_seguridad_last = prof_seguridad_first + prof_seguridad_numRows - 1; // if we have the correct record count, check the other stats if (prof_seguridad_total != -1) { prof_seguridad_numRows = Math.min(prof_seguridad_numRows, prof_seguridad_total); prof_seguridad_first = Math.min(prof_seguridad_first, prof_seguridad_total); prof_seguridad_last = Math.min(prof_seguridad_last, prof_seguridad_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_vias_total = prof_vias.RecordCount; // set the number of rows displayed on this page if (prof_vias_numRows < 0) { // if repeat region set to all records prof_vias_numRows = prof_vias_total; } else if (prof_vias_numRows == 0) { // if no repeat regions prof_vias_numRows = 1; } // set the first and last displayed record var prof_vias_first = 1; var prof_vias_last = prof_vias_first + prof_vias_numRows - 1; // if we have the correct record count, check the other stats if (prof_vias_total != -1) { prof_vias_numRows = Math.min(prof_vias_numRows, prof_vias_total); prof_vias_first = Math.min(prof_vias_first, prof_vias_total); prof_vias_last = Math.min(prof_vias_last, prof_vias_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_topografia_total = prof_topografia.RecordCount; // set the number of rows displayed on this page if (prof_topografia_numRows < 0) { // if repeat region set to all records prof_topografia_numRows = prof_topografia_total; } else if (prof_topografia_numRows == 0) { // if no repeat regions prof_topografia_numRows = 1; } // set the first and last displayed record var prof_topografia_first = 1; var prof_topografia_last = prof_topografia_first + prof_topografia_numRows - 1; // if we have the correct record count, check the other stats if (prof_topografia_total != -1) { prof_topografia_numRows = Math.min(prof_topografia_numRows, prof_topografia_total); prof_topografia_first = Math.min(prof_topografia_first, prof_topografia_total); prof_topografia_last = Math.min(prof_topografia_last, prof_topografia_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_puertos_total = prof_puertos.RecordCount; // set the number of rows displayed on this page if (prof_puertos_numRows < 0) { // if repeat region set to all records prof_puertos_numRows = prof_puertos_total; } else if (prof_puertos_numRows == 0) { // if no repeat regions prof_puertos_numRows = 1; } // set the first and last displayed record var prof_puertos_first = 1; var prof_puertos_last = prof_puertos_first + prof_puertos_numRows - 1; // if we have the correct record count, check the other stats if (prof_puertos_total != -1) { prof_puertos_numRows = Math.min(prof_puertos_numRows, prof_puertos_total); prof_puertos_first = Math.min(prof_puertos_first, prof_puertos_total); prof_puertos_last = Math.min(prof_puertos_last, prof_puertos_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_sanitaria_total = prof_sanitaria.RecordCount; // set the number of rows displayed on this page if (prof_sanitaria_numRows < 0) { // if repeat region set to all records prof_sanitaria_numRows = prof_sanitaria_total; } else if (prof_sanitaria_numRows == 0) { // if no repeat regions prof_sanitaria_numRows = 1; } // set the first and last displayed record var prof_sanitaria_first = 1; var prof_sanitaria_last = prof_sanitaria_first + prof_sanitaria_numRows - 1; // if we have the correct record count, check the other stats if (prof_sanitaria_total != -1) { prof_sanitaria_numRows = Math.min(prof_sanitaria_numRows, prof_sanitaria_total); prof_sanitaria_first = Math.min(prof_sanitaria_first, prof_sanitaria_total); prof_sanitaria_last = Math.min(prof_sanitaria_last, prof_sanitaria_total); } %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var prof_hidraulica_total = prof_hidraulica.RecordCount; // set the number of rows displayed on this page if (prof_hidraulica_numRows < 0) { // if repeat region set to all records prof_hidraulica_numRows = prof_hidraulica_total; } else if (prof_hidraulica_numRows == 0) { // if no repeat regions prof_hidraulica_numRows = 1; } // set the first and last displayed record var prof_hidraulica_first = 1; var prof_hidraulica_last = prof_hidraulica_first + prof_hidraulica_numRows - 1; // if we have the correct record count, check the other stats if (prof_hidraulica_total != -1) { prof_hidraulica_numRows = Math.min(prof_hidraulica_numRows, prof_hidraulica_total); prof_hidraulica_first = Math.min(prof_hidraulica_first, prof_hidraulica_total); prof_hidraulica_last = Math.min(prof_hidraulica_last, prof_hidraulica_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_calidad_total == -1) { // count the total records by iterating through the recordset for (prof_calidad_total=0; !prof_calidad.EOF; prof_calidad.MoveNext()) { prof_calidad_total++; } // reset the cursor to the beginning if (prof_calidad.CursorType > 0) { if (!nro_cal.BOF) prof_calidad.MoveFirst(); } else { prof_calidad.Requery(); } // set the number of rows displayed on this page if (prof_calidad_numRows < 0 || prof_calidad_numRows > prof_calidad_total) { prof_calidad_numRows = prof_calidad_total; } // set the first and last displayed record prof_calidad_last = Math.min(prof_calidad_first + prof_calidad_numRows - 1, prof_calidad_total); prof_calidad_first = Math.min(prof_calidad_first, prof_calidad_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_cimentaciones_total == -1) { // count the total records by iterating through the recordset for (prof_cimentaciones_total=0; !prof_cimentaciones.EOF; prof_cimentaciones.MoveNext()) { prof_cimentaciones_total++; } // reset the cursor to the beginning if (prof_cimentaciones.CursorType > 0) { if (!prof_cimentaciones.BOF) prof_cimentaciones.MoveFirst(); } else { prof_cimentaciones.Requery(); } // set the number of rows displayed on this page if (prof_cimentaciones_numRows < 0 || prof_cimentaciones_numRows > prof_cimentaciones_total) { prof_cimentaciones_numRows = prof_cimentaciones_total; } // set the first and last displayed record prof_cimentaciones_last = Math.min(prof_cimentaciones_first + prof_cimentaciones_numRows - 1, prof_cimentaciones_total); prof_cimentaciones_first = Math.min(prof_cimentaciones_first, prof_cimentaciones_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_construccion_total == -1) { // count the total records by iterating through the recordset for (prof_construccion_total=0; !prof_construccion.EOF; prof_construccion.MoveNext()) { prof_construccion_total++; } // reset the cursor to the beginning if (prof_construccion.CursorType > 0) { if (!prof_construccion.BOF) prof_construccion.MoveFirst(); } else { prof_construccion.Requery(); } // set the number of rows displayed on this page if (prof_construccion_numRows < 0 || prof_construccion_numRows > prof_construccion_total) { prof_construccion_numRows = prof_construccion_total; } // set the first and last displayed record prof_construccion_last = Math.min(prof_construccion_first + prof_construccion_numRows - 1, prof_construccion_total); prof_construccion_first = Math.min(prof_construccion_first, prof_construccion_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_estructuras_total == -1) { // count the total records by iterating through the recordset for (prof_estructuras_total=0; !prof_estructuras.EOF; prof_estructuras.MoveNext()) { prof_estructuras_total++; } // reset the cursor to the beginning if (prof_estructuras.CursorType > 0) { if (!prof_estructuras.BOF) prof_estructuras.MoveFirst(); } else { prof_estructuras.Requery(); } // set the number of rows displayed on this page if (prof_estructuras_numRows < 0 || prof_estructuras_numRows > prof_estructuras_total) { prof_estructuras_numRows = prof_estructuras_total; } // set the first and last displayed record prof_estructuras_last = Math.min(prof_estructuras_first + prof_estructuras_numRows - 1, prof_estructuras_total); prof_estructuras_first = Math.min(prof_estructuras_first, prof_estructuras_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_hidrologia_total == -1) { // count the total records by iterating through the recordset for (prof_hidrologia_total=0; !prof_hidrologia.EOF; prof_hidrologia.MoveNext()) { prof_hidrologia_total++; } // reset the cursor to the beginning if (prof_hidrologia.CursorType > 0) { if (!prof_hidrologia.BOF) prof_hidrologia.MoveFirst(); } else { prof_hidrologia.Requery(); } // set the number of rows displayed on this page if (prof_hidrologia_numRows < 0 || prof_hidrologia_numRows > prof_hidrologia_total) { prof_hidrologia_numRows = prof_hidrologia_total; } // set the first and last displayed record prof_hidrologia_last = Math.min(prof_hidrologia_first + prof_hidrologia_numRows - 1, prof_hidrologia_total); prof_hidrologia_first = Math.min(prof_hidrologia_first, prof_hidrologia_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_mambiente_total == -1) { // count the total records by iterating through the recordset for (prof_mambiente_total=0; !prof_mambiente.EOF; prof_mambiente.MoveNext()) { prof_mambiente_total++; } // reset the cursor to the beginning if (prof_mambiente.CursorType > 0) { if (!prof_mambiente.BOF) prof_mambiente.MoveFirst(); } else { prof_mambiente.Requery(); } // set the number of rows displayed on this page if (prof_mambiente_numRows < 0 || prof_mambiente_numRows > prof_mambiente_total) { prof_mambiente_numRows = prof_mambiente_total; } // set the first and last displayed record prof_mambiente_last = Math.min(prof_mambiente_first + prof_mambiente_numRows - 1, prof_mambiente_total); prof_mambiente_first = Math.min(prof_mambiente_first, prof_mambiente_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_seguridad_total == -1) { // count the total records by iterating through the recordset for (prof_seguridad_total=0; !prof_seguridad.EOF; prof_seguridad.MoveNext()) { prof_seguridad_total++; } // reset the cursor to the beginning if (prof_seguridad.CursorType > 0) { if (!prof_seguridad.BOF) prof_seguridad.MoveFirst(); } else { prof_seguridad.Requery(); } // set the number of rows displayed on this page if (prof_seguridad_numRows < 0 || prof_seguridad_numRows > prof_seguridad_total) { prof_seguridad_numRows = prof_seguridad_total; } // set the first and last displayed record prof_seguridad_last = Math.min(prof_seguridad_first + prof_seguridad_numRows - 1, prof_seguridad_total); prof_seguridad_first = Math.min(prof_seguridad_first, prof_seguridad_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_vias_total == -1) { // count the total records by iterating through the recordset for (prof_vias_total=0; !prof_vias.EOF; prof_vias.MoveNext()) { prof_vias_total++; } // reset the cursor to the beginning if (prof_vias.CursorType > 0) { if (!prof_vias.BOF) prof_vias.MoveFirst(); } else { prof_vias.Requery(); } // set the number of rows displayed on this page if (prof_vias_numRows < 0 || prof_vias_numRows > prof_vias_total) { prof_vias_numRows = prof_vias_total; } // set the first and last displayed record prof_vias_last = Math.min(prof_vias_first + prof_vias_numRows - 1, prof_vias_total); prof_vias_first = Math.min(prof_vias_first, prof_vias_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_topografia_total == -1) { // count the total records by iterating through the recordset for (prof_topografia_total=0; !prof_topografia.EOF; prof_topografia.MoveNext()) { prof_topografia_total++; } // reset the cursor to the beginning if (prof_topografia.CursorType > 0) { if (!prof_topografia.BOF) prof_topografia.MoveFirst(); } else { prof_topografia.Requery(); } // set the number of rows displayed on this page if (prof_topografia_numRows < 0 || prof_topografia_numRows > prof_topografia_total) { prof_topografia_numRows = prof_topografia_total; } // set the first and last displayed record prof_topografia_last = Math.min(prof_topografia_first + prof_topografia_numRows - 1, prof_topografia_total); prof_topografia_first = Math.min(prof_topografia_first, prof_topografia_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_puertos_total == -1) { // count the total records by iterating through the recordset for (prof_puertos_total=0; !prof_puertos.EOF; prof_puertos.MoveNext()) { prof_puertos_total++; } // reset the cursor to the beginning if (prof_puertos.CursorType > 0) { if (!prof_puertos.BOF) prof_puertos.MoveFirst(); } else { prof_puertos.Requery(); } // set the number of rows displayed on this page if (prof_puertos_numRows < 0 || prof_puertos_numRows > prof_puertos_total) { prof_puertos_numRows = prof_puertos_total; } // set the first and last displayed record prof_puertos_last = Math.min(prof_puertos_first + prof_puertos_numRows - 1, prof_puertos_total); prof_puertos_first = Math.min(prof_puertos_first, prof_puertos_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_sanitaria_total == -1) { // count the total records by iterating through the recordset for (prof_sanitaria_total=0; !prof_sanitaria.EOF; prof_sanitaria.MoveNext()) { prof_sanitaria_total++; } // reset the cursor to the beginning if (prof_sanitaria.CursorType > 0) { if (!prof_sanitaria.BOF) prof_sanitaria.MoveFirst(); } else { prof_sanitaria.Requery(); } // set the number of rows displayed on this page if (prof_sanitaria_numRows < 0 || prof_sanitaria_numRows > prof_sanitaria_total) { prof_sanitaria_numRows = prof_sanitaria_total; } // set the first and last displayed record prof_sanitaria_last = Math.min(prof_sanitaria_first + prof_sanitaria_numRows - 1, prof_sanitaria_total); prof_sanitaria_first = Math.min(prof_sanitaria_first, prof_sanitaria_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (prof_hidraulica_total == -1) { // count the total records by iterating through the recordset for (prof_hidraulica_total=0; !prof_hidraulica.EOF; prof_hidraulica.MoveNext()) { prof_hidraulica_total++; } // reset the cursor to the beginning if (prof_hidraulica.CursorType > 0) { if (!prof_hidraulica.BOF) prof_hidraulica.MoveFirst(); } else { prof_hidraulica.Requery(); } // set the number of rows displayed on this page if (prof_hidraulica_numRows < 0 || prof_hidraulica_numRows > prof_hidraulica_total) { prof_hidraulica_numRows = prof_hidraulica_total; } // set the first and last displayed record prof_hidraulica_last = Math.min(prof_hidraulica_first + prof_hidraulica_numRows - 1, prof_hidraulica_total); prof_hidraulica_first = Math.min(prof_hidraulica_first, prof_hidraulica_total); } %> El Ingeniero Civil.com | NOTICIAS
 
:: Inicio | NOTICIAS
 
   
:: Numero de Visitas ||
© 2002 - 2005 El Ingeniero Civil.com.ar
<% prof_calidad.Close(); %> <% prof_cimentaciones.Close(); %> <% prof_construccion.Close(); %> <% prof_estructuras.Close(); %> <% prof_hidrologia.Close(); %> <% prof_mambiente.Close(); %> <% prof_seguridad.Close(); %> <% prof_vias.Close(); %> <% prof_hidraulica.Close(); %> <% prof_sanitaria.Close(); %> <% prof_puertos.Close(); %> <% prof_topografia.Close(); %>