<!--#include
file="connexion_quiz.asp" -->
<%
queryStr = "SELECT * FROM T_personne"
set PassRec = Cndb.Execute(queryStr)
%>
<%
Recordset1_numRows = 0
Dim Repeat1__numRows
Repeat1__numRows = -1
Dim Repeat1__index
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div align="center">
<p>Liste des personnes déjà inscrite</p>
<%
While ((Repeat1__numRows <> 0) AND (NOT PassRec.EOF))
%>
<table border="0" align="center">
<tr>
<td><%= PassRec("Login_personne").value %>
</td>
</tr>
</table>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
PassRec.MoveNext()
Wend
%>
<p> </p>
</div>
</body>
</html>
<%
Cndb.Close()
%>
|