Ver Mensaje Individual
  #6 (permalink)  
Antiguo 04/06/2004, 11:10
fercom
 
Fecha de Ingreso: septiembre-2003
Ubicación: Lima Peru
Mensajes: 70
Antigüedad: 21 años, 7 meses
Puntos: 0
continua de la pag anterior
Código HTML:
  ' if we walked off the end, set the offset based on page size
  If (MM_rs.EOF And Not MM_paramIsDefined) Then
    If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
      If ((MM_rsCount Mod MM_size) > 0) Then
        MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
      Else
        MM_offset = MM_rsCount - MM_size
      End If
    End If
  End If

  ' reset the cursor to the beginning
  If (MM_rs.CursorType > 0) Then
    MM_rs.MoveFirst
  Else
    MM_rs.Requery
  End If

  ' move the cursor to the selected record
  MM_index = 0
  While (Not MM_rs.EOF And MM_index < MM_offset)
    MM_rs.MoveNext
    MM_index = MM_index + 1
  Wend
End If
%>
<%
' *** Move To Record: update recordset stats

' set the first and last displayed record
Registro_Notas_first = MM_offset + 1
Registro_Notas_last  = MM_offset + MM_size

If (MM_rsCount <> -1) Then
  If (Registro_Notas_first > MM_rsCount) Then
    Registro_Notas_first = MM_rsCount
  End If
  If (Registro_Notas_last > MM_rsCount) Then
    Registro_Notas_last = MM_rsCount
  End If
End If

' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters

Dim MM_keepNone
Dim MM_keepURL
Dim MM_keepForm
Dim MM_keepBoth

Dim MM_removeList
Dim MM_item
Dim MM_nextItem

' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then
  MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If

MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""

' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
  End If
Next

' add the Form variables to the MM_keepForm string
For Each MM_item In Request.Form
  MM_nextItem = "&" & MM_item & "="
  If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
  End If
Next

' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
If (MM_keepBoth <> "") Then 
  MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL <> "")  Then
  MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm <> "") Then
  MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
End If

' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
  If (firstItem <> "") Then
    MM_joinChar = "&"
  Else
    MM_joinChar = ""
  End If
End Function
%>
<%
' *** Move To Record: set the strings for the first, last, next, and previous links

Dim MM_keepMove
Dim MM_moveParam
Dim MM_moveFirst
Dim MM_moveLast
Dim MM_moveNext
Dim MM_movePrev

Dim MM_urlStr
Dim MM_paramList
Dim MM_paramIndex
Dim MM_nextParam

MM_keepMove = MM_keepBoth
MM_moveParam = "index"

' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size > 1) Then
  MM_moveParam = "offset"
  If (MM_keepMove <> "") Then
    MM_paramList = Split(MM_keepMove, "&")
    MM_keepMove = ""
    For MM_paramIndex = 0 To UBound(MM_paramList)
      MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
      If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
        MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
      End If
    Next
    If (MM_keepMove <> "") Then
      MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
    End If
  End If
End If

' set the strings for the move to links
If (MM_keepMove <> "") Then 
  MM_keepMove = MM_keepMove & "&"
End If

MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="

MM_moveFirst = MM_urlStr & "0"
MM_moveLast  = MM_urlStr & "-1"
MM_moveNext  = MM_urlStr & CStr(MM_offset + MM_size)
If (MM_offset - MM_size < 0) Then
  MM_movePrev = MM_urlStr & "0"
Else
  MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
End If
%>

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../css/index.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//-->
</script>
</head>

<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="2" class="tabla-ext">
  <tr class="fondo-TD-02"> 
    <td colspan="3" align="default"><font color="#990000" size="2"><strong>Lista 
      de Ex&aacute;menes por Empleado.-</strong></font></td>
  </tr>
  <tr> 
    <td width="25%" height="19" align="default" class="fondo-TD-02"><strong><font color="#34476B">&nbsp;Nombre 
      de Empleado :</font></strong></td>
    <td width="76%" colspan="2" align="default" class="fondo-TD-02"><strong>&nbsp;<%=(Empleados.Fields.Item("NombreEmpleado").Value)%></strong></td>
  </tr>
  <tr> 
    <td height="19" align="default" class="fondo-TD-02"><strong><font color="#34476B">&nbsp;Puesto 
      :</font></strong></td>
    <td colspan="2" align="default" class="fondo-TD-02"><strong>&nbsp;<%=(Registro_Notas.Fields.Item("Puesto").Value)%></strong></td>
  </tr>
  <tr> 
    <td align="default" class="fondo-TD-02"><strong><font color="#FFFFFF">&nbsp;<font color="#34476B">Area 
      </font></font></strong><font color="#34476B"><span><strong>:</strong></span></font></td>
    <td colspan="2" align="default" class="fondo-TD-02"><strong>&nbsp;<%=(Registro_Notas.Fields.Item("Area").Value)%></strong></td>
  </tr>
  <tr> 
    <td colspan="3" align="default" class="fondo-TD-01"><div align="left"><strong></strong></div>
      <div align="center"><strong><font color="#FFFFFF"> </font></strong></div>
      <div align="center"> </div>
      <div align="center"> <br>
        <table width="100%" border="0" cellpadding="0" cellspacing="2" bgcolor="#FFFFFF">
          <tr class="fondo-TD-01"> 
            <td><div align="center"><strong><font color="#FFFFFF">&nbsp;Fecha 
                de Ex&aacute;men</font></strong></div></td>
            <td><div align="center"><strong><font color="#FFFFFF">&nbsp;Nota de 
                Ex&aacute;men</font></strong></div></td>
            <td><div align="center"><strong><font color="#FFFFFF">Tipo Ex&aacute;men</font></strong></div></td>
          </tr>
          <% 
While ((Repeat1__numRows <> 0) AND (NOT Registro_Notas.EOF)) 
%>
          <tr class="fondo-TD-02"> 
            <td width="33%"><div align="center"><strong><%=(Registro_Notas.Fields.Item("Fecha").Value)%></strong></div></td>
            <td width="33%"><div align="center"><strong><font size="2"><%=(Registro_Notas.Fields.Item("Nota").Value)%></font></strong></div></td>
            <td width="33%"><strong><a href="notas2.asp?<%= MM_keepBoth & MM_joinChar(MM_keepBoth) & "TipoExamen=" & Registro_Notas.Fields.Item("TipoExamen").Value %>"><%=(Registro_Notas.Fields.Item("TipoExamen").Value)%>&gt;&gt;&gt;</a></strong></td>
          </tr>
          <% 
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  Registro_Notas.MoveNext()
Wend
%>
        </table>
      </div></td>
  </tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr> 
    <td><div align="right">Ex&aacute;menes <strong><%=(Registro_Notas_first)%></strong> 
        a <strong><%=(Registro_Notas_last)%></strong> de <strong><%=(Registro_Notas_total)%></strong> 
      </div></td>
  </tr>
  <tr> 
    <td><table border="0" align="right" cellspacing="5">
        <tr> 
          <td align="center"> <strong> 
            <% If MM_offset <> 0 Then %>
            <a href="<%=MM_moveFirst%>">&lt;First</a> 
            <% End If ' end MM_offset <> 0 %>
            </strong></td>
          <td align="center"> <strong> 
            <% If MM_offset <> 0 Then %>
            <a href="<%=MM_movePrev%>">&lt;&lt;Previous</a> 
            <% End If ' end MM_offset <> 0 %>
            </strong></td>
          <td align="center"> <strong> 
            <% If Not MM_atTotal Then %>
            <a href="<%=MM_moveNext%>">Next&gt;&gt;</a> 
            <% End If ' end Not MM_atTotal %>
            </strong></td>
          <td align="center"> <strong> 
            <% If Not MM_atTotal Then %>
            <a href="<%=MM_moveLast%>">Last&gt;</a> 
            <% End If ' end Not MM_atTotal %>
            </strong></td>
        </tr>
      </table>
      <div align="right"><br>
        <br>
        <br>
        <input name="Button" type="button" class="form" onClick="MM_callJS('history.back(1)')" value="Regresar">
      </div></td>
  </tr>
</table>
</body>
</html>
<%
Registro_Notas.Close()
Set Registro_Notas = Nothing
%>
<%
Empleados.Close()
Set Empleados = Nothing
%> 
__________________
Fernando Parodi