bonjour, j'ai creer ma base sql 2000 avec mes champs de donnees, ensuite avec dreamw j'ai cree ma page de visualisation sous forme de tableau, jusque la ok tout marche. je souhaite cree une autre page "recherche par mots cle" qui me filtrerai ma page de visualisation selon les mots saisies dans plusieur champ voici la ou j en suis mais je bute sur la partie en gras
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/pull.asp" -->
<%
Dim Recordset1
Dim Recordset1_numRows
Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_pull_STRING
Recordset1.Source = "SELECT * FROM dbo.classification "
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()
Recordset1_numRows = 0'
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
[ Lien ]">
<html>
<head>
<title>recherche</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
</style></head>
<body>
<p align="center"><strong>Recherche</strong></p>
<p align="left">Recherche par mots clés: </p>
<% if request("categorie") = "" and request("objet") = "" and request("id_marche") and request("prm") like "objet" or "categorie" or "id_m" or "prm" or "date"
end if
%>
<table width="600" height="30" border="1">
<tr>
<td width="600" height="15"><form name="form1" method="post" action="indexmarches.asp">
<div align="center">
<input name="recherche" type="text" id="recherche">
<input type="submit" name="Submit" value="Envoyer">
</div>
</form></td>
</tr>
</table>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
merci pour le coup de pouce,