1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| </table>
<table width="858" align="center" border="1">
<tr>
<td width="130" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=rd"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a>référence</a><a href="default.asp?tri=rc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td>
<td width="182" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=ld"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a> libellé</a><a href="default.asp?tri=lc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td>
<td width="120" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=cd"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a>catégorie</a><a href="default.asp?tri=cc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td>
<td width="88" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=pd"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a>prix</a><a href="default.asp?tri=pc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td>
<td width="48" bgcolor="#00FF00"><div align="center">détail</div></td>
<%if session("ident")="ADMIN" then%>
<td colspan="2" bgcolor="#00FF00"><div align="center">edition</div></td>
<%end if%>
</tr>
<%if rs.recordcount>0 then rs.movefirst
while not rs.eof%>
<tr>
<td><div align="center"><%=rs("code_art")%></div></td>
<td><div align="center"><%=rs("lib_art")%></div></td>
<td><div align="center"><%=rs("code_cat")%></div></td>
<td><div align="center"><%=rs("prix")%></div></td>
<td><div align="center"><a href="detail.asp?ref=<%=rs("code_art")%>">VOIR</a></div></td>
<%if session("ident")="ADMIN" then%>
<td width="113"><div align="center">
<form name="form2" method="post" action="Modification/modif.asp">
<input type="hidden" name="code" value="<%=rs("code_art")%>">
<input type="submit" name="Submit2" value="Modification">
</form>
</div></td>
<td width="131"><div align="center">
<form name="form3" method="post" action="Suppresion/suppr.asp">
<input type="hidden" name="code" value="<%=rs("code_art")%>">
<input type="submit" name="Submit3" value="Suppression">
</form>
</div></td>
<%end if%>
</tr>
<%
rs.movenext
wend
rs.close
connecteur.close
set rs = nothing
set connecteur = nothing
%>
</table> |
Partager