Forum de discussion
Forum « Programmation ASP » (archives)
Re: affichage tableau en asp
Envoyé: 29 avril 2004, 8h29 par Oznog
Tu veux afficher les données dans un tableau HTML (en ASP ben oui!).
Tu as deux valeurs donc deux colonne :
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr><th>Numéro</th><th>Nom</th></tr>
<tr>
<td>Cellule 1</td>
<td>Cellule 2</td>
</tr>
</table>
Donc :
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr><th>Numéro</th><th>Nom</th></tr>
<% Do While Not RS.EOF %>
response.write "<tr><td>" & RS("num_societe") & "</td>"
response.write "<td>" & RS("nom_societe") & "</td></tr>"
<% RS.MoveNext Loop %>
</table>
Ciao
Oznog
Réponses
|