ES DE UN SOLO ALUMNO, EL ALUMNO SE CONECTA Y SOLO TIENE ACCESO A SUS DATOS, LA MEDIA ES DE SOLO UN ALUMNO, DE TODOS SUS EXAMENES.
HAGO MI CONEXION CON DREAMWEAVER MX 2004 SI LES SIRVE DE ALGO ESTA INFO. (POR QUE VEO QUE LOS PARAMETROS QUE USA LA PIMERA RESPUESTA SON DISTINTOS:
ESTA ES MI CONEXION
Código HTML:
<%
Dim RegistroNotas__IdNotas
RegistroNotas__IdNotas = "1"
If (Session("IdNotas") <> "") Then
RegistroNotas__IdNotas = Session("IdNotas")
End If
%>
<%
Dim RegistroNotas
Dim RegistroNotas_numRows
Set RegistroNotas = Server.CreateObject("ADODB.Recordset")
RegistroNotas.ActiveConnection = MM_ConCapacitacion_STRING
RegistroNotas.Source = "SELECT * FROM dbo.RegistroNotas WHERE Id_Empleado = '" + Replace(RegistroNotas__IdNotas, "'", "''") + "' ORDER BY Substring(Fecha,7,4) Desc, Substring(Fecha,4,2) Desc, Substring(Fecha,1,2) Desc"
RegistroNotas.CursorType = 0
RegistroNotas.CursorLocation = 2
RegistroNotas.LockType = 1
RegistroNotas.Open()
RegistroNotas_numRows = 0
%>