tu codigo dice
Código PHP:
'Mostramos las notas de ese usuario
sql2 = "SELECT * FROM tabla_alumnas WHERE password='" & strPassword & ""
RS2.Open sql2, oConn, 1, 1
Response.Write("Apellidos: ")
Response.Write(RS2.Fields("apellidos") & "<BR>")
Response.Write("Nombres: ")
Response.Write(RS2.Fields("nombres") & "<BR>")
Response.Write("Dirección: ")
Response.write(RS2.Fields("direccion")) & "<br>"
RS2.Close
ponelo asi
Código PHP:
'Mostramos las notas de ese usuario
sql2 = "SELECT * FROM tabla_alumnas WHERE password='" & strPassword & ""
RS2.Open sql2, oConn, 1, 1
%>
<table border="1" width="600" id="table1">
<tr>
<td width="86">Apellidos</td>
<td><%=RS2.Fields("apellidos")%></td>
</tr>
<tr>
<td width="86">Nombre</td>
<td><%=RS2.Fields("nombres")%></td>
</tr>
<tr>
<td width="86">Direccion</td>
<td><%=RS2.Fields("direccion")%></td>
</tr>
</table>
<%
RS2.Close