ciao devo adattare questo codice, che cerca una parola se è contenuta in un campo testo che ne puo contenere anche altre, in maniera tale da poter cercare piu parole inserite per la ricerca , es: voglio cercare "cane lupo"..... questo è il codice

codice:
dim cerca, pp
	'estrazione della pagina corrente
	
	pag=trim(request("pag"))
		 cerca=replace(Trim(request("cerca")),"'", "")
         pp=cerca
	 
		
	if pag="" then pag=1
	  if IsEmpty(Request.querystring("cerca")) then
		cerca = " where nomearticolo like '%" & Request.querystring("cerca") & "%'order by data desc " 

		strricerca = "select * from richieste"
	
	else

	

   if Request.querystring("cerca")<>""  then
      cerca = " where nomearticolo like '%" & cerca & "%'order by data desc" 

 
			else
				cerca = " where nomearticolo like '%' order by data desc"
			end if
				
	
		strricerca = "select * from richieste " & cerca 
	
	end if
	
	'Response.Write strricerca
	'Response.End
	set rsestrai=Server.CreateObject("adodb.recordset")
		rsestrai.LockType=3
		rsestrai.CursorType=3
		rsestrai.PageSize=5
		rsestrai.ActiveConnection=connessione
		rsestrai.Open strricerca
		


%>