petoulachi A fortiori, brigadier chef | voila le code de la page :
Code :
- <%@ Language=VBScript %>
- <HTML>
- <HEAD>
- <title>Recherche de produits</title>
- </HEAD>
- <BODY onload="document.formulaire.bouton3.focus();">
- <table>
- <tr><td><a href="default.html"><img src="image/boutique.jpg" border=0></a></td></tr>
- </table>
- <form name="formulaire" method="post" action="recherche.asp">
- <table width=75% align=center>
- <tr align=center><td>Rechercher un produit : <input type="text" name="recherche">
- <input type="submit" value="OK" name="bouton3"></td></tr>
- </table>
- </form>
- <% if Request.Form ("bouton3" )="OK" then
- set ocon = Server.CreateObject ("ADODB.Connection" )
- ocon.Open "websql","util2","yesyes"
- sql="SELECT * FROM produit WHERE Detail_prod like '%"&Request.Form("recherche" )&"%'"
- set result=Server.CreateObject("ADODB.recordset" )
- result.Open sql,ocon,3,3
- if result.EOF then
- %><table width=75% align=center>
- <tr align=center><td>Il n'y a aucun produit en promotion actuellement.</td></tr>
- </table><%
- else
- %>
- <table width=75% align=center border=0 cellspacing=0 cellpadding=0>
- <tr bgcolor="#DFEFFF"><td></td><td></td><td></td><td>Produit</td><td>Detail</td><td>Prix HT</td><td>Prix promotion</td><td></td><td></td></tr>
- <% do while not result.EOF %>
- <tr><td>
- <% if result("Nouv_prod" )=true then %><img src="image/new.gif"> <% end if %></td>
- <td>
- <% if result("Prom_prod" )=true then %><img src="image/promo.gif"> <% end if %></td>
- <td>
- <% if result("Sel_prod" )=true then %><img src="image/coeur.gif"> <% end if %></td>
- <td><%=result("Titre_prod" ) %></td>
- <td><%=result("Detail_prod" ) %></td>
- <% if result("Prom_Prod" )=true then %>
- <td align="right"><strike><%=result("Prixht_prod" )%></strike> €</td><td align="right"><%=result("Prixhtprom_prod" ) %> €</td>
- <% else %> <td align="right"><%=result("Prixht_prod" )%> €</td><td></td> <% end if %>
- <td align=center><img src="image/<%=result("Image_prod" )%>"></td>
- <td align=center><a href="commande.asp?Id_prod=<%=result("Id_prod" )%>"><img src="image/Caddie2.jpg" border=0></a></td>
- </tr>
- <% result.MoveNext
- loop
- end if
- %>
- </table>
- <% end if %>
- </body>
- </html>
|
Désolé d'etre un peu perdu mais c pas pour moi, je fais intermediaire Message édité par petoulachi le 17-12-2002 à 19:23:31
|