Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Rodrigo F.

[Resolvido] Problemas com Paginação e Filtros

Recommended Posts

Bem amigos...

Ja tentei de tudo e não estou conseguindo arrumar o problema com a paginação.

Ela retorna a resposta correta, informa o total encontrato e mostra os 20 primeiros registros, mais quando tento ir para próxima página ela retorna a resposta da página de busca como se eu tivesse efetuado a busca sem informar o que buscar...

 

O outro problema é que não estou conseguindo criar uma caixa de seleção que ajude como filtro... Podendo selecionar buscar somente em diretor, ator, sinopse ou o padrão titulo...

 

Vlws.

 

<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/cinex.asp" -->
<%
Dim filme__MMColParam
filme__MMColParam = "AAAAZZZZCXCAAJAJA"
if (Request.Form("titulo") <> "") then filme__MMColParam = Request.Form("titulo")
%>
<%
function preparaPalavra(str)
 preparaPalavra = replace(str,"a","[a,á,à,ã,â,ä]")
 preparaPalavra = replace(preparaPalavra,"e","[e,é,è,ê,ë]")
 preparaPalavra = replace(preparaPalavra,"i","[i,í,ì,î,ï]")
 preparaPalavra = replace(preparaPalavra,"o","[o,ó,ò,õ,ô,ö]")
 preparaPalavra = replace(preparaPalavra,"u","[u,ú,ù,û,ü]")
 preparaPalavra = replace(preparaPalavra,"c","[c,ç]")
 preparaPalavra = preparaPalavra
end function


ip = Request.ServerVariables("REMOTE_ADDR")
Dim categoria__MMColParam
categoria__MMColParam = Trim(Request.Form("id_genero"))

set filme = Server.CreateObject("ADODB.Recordset")
filme.ActiveConnection = MM_cinex_STRING

	if categoria__MMColParam = "" then

		filme.Source = "SELECT *  FROM filme  WHERE titulo LIKE '%" + Replace(preparaPalavra(filme__MMColParam), "'", "''") + "%' OR titulo_original LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR direcao LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores1 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores2 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores3 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores4 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores5 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores6 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores7 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores8 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores9 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores10 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' ORDER BY titulo ASC"
	
	else
	
		filme.Source = "SELECT *  FROM filme  WHERE (titulo LIKE '%" + Replace(preparaPalavra(filme__MMColParam), "'", "''") + "%' OR titulo_original LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR direcao LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores1 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores2 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores3 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores4 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores5 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores6 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores7 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores8 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores9 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores10 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%') AND  id_genero = "&categoria__MMColParam&" ORDER BY titulo ASC"
	
	End if



filme.CursorType = 0
filme.CursorLocation = 2
filme.LockType = 3
filme.Open()
filme_numRows = 0
%>

<%
if categoria__MMColParam <> "" then
set categoria = Server.CreateObject("ADODB.Recordset")
categoria.ActiveConnection = MM_cinex_STRING
categoria.Source = "SELECT * FROM genero WHERE codigo = "&categoria__MMColParam&""
categoria.CursorType = 0
categoria.CursorLocation = 2
categoria.LockType = 3
categoria.Open()
categoria_numRows = 0
End if
%>
<%
				  
Set msg = Server.CreateObject("CDONTS.NewMail")

Dim msg, HTML
				  
HTML = "<!DOCTYPE HTML PUBLIC ""-//IETF//DTD HTML//EN"">"
HTML = HTML & "<html><head><title>Club Video - Resultado de busca dentro do Site!</title></head>"
HTML = HTML & "<body bgcolor=#FFFFFF text=#000000><font face=Tahoma size=2>"
HTML = HTML & "Data: "&Date&"<Br>"
HTML = HTML & "IP: "&ip&"<Br><br>"

If Session("Aut") = "Ok" Then
	HTML = HTML & "Cliente: Id "&Session("IDCliente")&" - "&Session("IDnome")&"<Br><br>"
End if

HTML = HTML & "Palavra Buscada: <b>"&filme__MMColParam&"</b><Br>"
if categoria__MMColParam <> "" then
HTML = HTML & "Gênero: <b>"&categoria.Fields.Item("genero").Value&"</b><Br>"
End if

If Not filme.EOF Or Not filme.BOF Then
	HTML = HTML & "<br><font color=#0000FF>Busca Encontrada Com Sucesso!</font>"
End if

If filme.EOF And filme.BOF Then
	HTML = HTML & "<br><font color=#FF0000>Busca Não Encontrada!</font>"
End if

HTML = HTML & "</font>"
HTML = HTML & "</body></html>"
				  
msg.From = "contato@cluvideo.com.br"
msg.To = "rodriqo@gmail.com"
msg.Subject = "Club Video - Resultado de busca dentro do Site!"
msg.BodyFormat = 0
msg.MailFormat = 0
msg.Body = HTML
msg.Send
						  
Set msg = Nothing
%>

<%
Dim HLooper1__numRows
HLooper1__numRows = 80
Dim HLooper1__index
HLooper1__index = 0
filme_numRows = filme_numRows + HLooper1__numRows
%>
<html>
<head>
<meta http-equiv="Content-Language" content="pt-br" />
<meta http-equiv="Cache-Control" content="no-cache, no-store" />
<meta http-equiv="Pragma" content="no-cache, no-store" />
<meta name="robots" content="index, follow" />
<meta name="description" content="Club Video - Prazer em atender você!!! Os melhores filmes, promoções, lan-house, Recarga Online e diversos serviços especializados. Tudo ao seu alcance!" />
<meta name="keywords" content="locadora, cinema, dvd, ilhéus, ios, serviços, classificados, compras, entretenimento, animação, filmes, arte, cultura, bahia, crianças, diversão, vhs, trailers, sinopse, suspense, drama, ação, aventura, comédia, animação, romance, terror, policial, ficção, agenda, informação, clima" />
<meta name="URL" content="http://www.clubvideo.com.br">
<meta name="SUBJECT" content="Video Locadora">
<meta name="RATING" content="GENERAL">
<meta name="audience" content="all">
<meta name="LANGUAGE" content="Portuguese">
<meta name="ROBOTS" content="index,follow">
<meta name="GOOGLEBOT" content="index,follow">
<meta name="Dc.title" content="Club Video" />
<meta name="Author" content="Rodrigo F. Santos - wwBR.net" />
<link rel="SHORTCUT ICON" href="http://www.clubvideo.com.br/favicon.ico" />
<link rel="apple-touch-icon" href="http://www.clubvideo.com.br/favicon.jpg" />
<title>Club Video - Prazer em Atender Você!</title>
<link rel="stylesheet" href="estilo.css" type="text/css">
<link rel="stylesheet" href="estilo_cine.css" type="text/css">
<link rel="stylesheet" href="noticias/estilo_noticias.css" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
<script language=javascript>
function msg(){
window.status="Club Video - Prazer em Atender você";
return true;
}
</script>

<script language="JavaScript">
<!--
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
	document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
	if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
	obj.visibility=v; }
}
//-->
</script>
<style type="text/css">
<!--
.style1 {
	color: #FF0000;
	font-weight: bold;
}
-->
</style>
<style type="text/css">
.sTitle {
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" align="center" link="#0176C8" vlink="#0176C8" alink="#0176C8" onLoad="msg()" rightmargin="0" bottommargin="0">
<table class="container" align="center" border="0" cellpadding="0" cellspacing="0">
 <tbody><tr>
  <td width="11"><img src="images/canto_esquerdo_1.gif" width="11" height="11"></td>
  <td width="100%" background="images/centro_top.gif"></td>
  <td width="11"><img src="images/canto_direito_1.gif" width="11" height="11"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"></td>
  <td><table width="784" border="0" cellpadding="0" cellspacing="0" height="68">
	<tbody><tr>
	 <td valign="top">
				<!--#include file="topo_logo.asp" --></td>
	</tr>
   </tbody></table></td>
  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"> </td>
	 <td class="navTable">
		<iframe name="I1" src="menu.htm" width="778" height="40" scrolling="no" frameborder="no" hspace="0" vspace="0" marginwidth="1" marginheight="1"></iframe>
	</td>

  <td background="images/direito_s.gif"> </td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"></td>
	 <td class="navTable">
		 </td>

  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif" height="340"></td>
  <td valign="top" align="left">
<!-- Menu //-->
			<% If Not filme.EOF Or Not filme.BOF Then %>
			
<%
'  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables

' set the record count
filme_total = filme.RecordCount

' set the number of rows displayed on this page
If (filme_numRows < 0) Then
  filme_numRows = filme_total
Elseif (filme_numRows = 0) Then
  filme_numRows = 1
End If

' set the first and last displayed record
filme_first = 1
filme_last  = filme_first + filme_numRows - 1

' if we have the correct record count, check the other stats
If (filme_total <> -1) Then
  If (filme_first > filme_total) Then filme_first = filme_total
  If (filme_last > filme_total) Then filme_last = filme_total
  If (filme_numRows > filme_total) Then filme_numRows = filme_total
End If
%>
			<%
' *** Recordset Stats: if we don't know the record count, manually count them

If (filme_total = -1) Then

  ' count the total records by iterating through the recordset
  filme_total=0
  While (Not filme.EOF)
	filme_total = filme_total + 1
	filme.MoveNext
  Wend

  ' reset the cursor to the beginning
  If (filme.CursorType > 0) Then
	filme.MoveFirst
  Else
	filme.Requery
  End If

  ' set the number of rows displayed on this page
  If (filme_numRows < 0 Or filme_numRows > filme_total) Then
	filme_numRows = filme_total
  End If

  ' set the first and last displayed record
  filme_first = 1
  filme_last = filme_first + filme_numRows - 1
  If (filme_first > filme_total) Then filme_first = filme_total
  If (filme_last > filme_total) Then filme_last = filme_total

End If
%>
			<%
' *** Move To Record and Go To Record: declare variables

Set MM_rs	= filme
MM_rsCount   = filme_total
MM_size	  = filme_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName <> "") Then
  MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
End If
%>
			<%
' *** Move To Record: handle 'index' or 'offset' parameter

if (Not MM_paramIsDefined And MM_rsCount <> 0) then

  ' use index parameter if defined, otherwise use offset parameter
  r = Request.QueryString("index")
  If r = "" Then r = Request.QueryString("offset")
  If r <> "" Then MM_offset = Int®

  ' if we have a record count, check if we are past the end of the recordset
  If (MM_rsCount <> -1) Then
	If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
	  If ((MM_rsCount Mod MM_size) > 0) Then		 ' last page not a full repeat region
		MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
	  Else
		MM_offset = MM_rsCount - MM_size
	  End If
	End If
  End If

  ' move the cursor to the selected record
  i = 0
  While ((Not MM_rs.EOF) And (i < MM_offset Or MM_offset = -1))
	MM_rs.MoveNext
	i = i + 1
  Wend
  If (MM_rs.EOF) Then MM_offset = i  ' set MM_offset to the last possible record

End If
%>
			<%
' *** Move To Record: if we dont know the record count, check the display range

If (MM_rsCount = -1) Then

  ' walk to the end of the display range for this page
  i = MM_offset
  While (Not MM_rs.EOF And (MM_size < 0 Or i < MM_offset + MM_size))
	MM_rs.MoveNext
	i = i + 1
  Wend

  ' if we walked off the end of the recordset, set MM_rsCount and MM_size
  If (MM_rs.EOF) Then
	MM_rsCount = i
	If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount
  End If

  ' if we walked off the end, set the offset based on page size
  If (MM_rs.EOF And Not MM_paramIsDefined) Then
	If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
	  If ((MM_rsCount Mod MM_size) > 0) Then
		MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
	  Else
		MM_offset = MM_rsCount - MM_size
	  End If
	End If
  End If

  ' reset the cursor to the beginning
  If (MM_rs.CursorType > 0) Then
	MM_rs.MoveFirst
  Else
	MM_rs.Requery
  End If

  ' move the cursor to the selected record
  i = 0
  While (Not MM_rs.EOF And i < MM_offset)
	MM_rs.MoveNext
	i = i + 1
  Wend
End If
%>
			<%
' *** Move To Record: update recordset stats

' set the first and last displayed record
filme_first = MM_offset + 1
filme_last  = MM_offset + MM_size
If (MM_rsCount <> -1) Then
  If (filme_first > MM_rsCount) Then filme_first = MM_rsCount
  If (filme_last > MM_rsCount) Then filme_last = MM_rsCount
End If

' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
%>
			<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters

' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "="
MM_keepURL="":MM_keepForm="":MM_keepBoth="":MM_keepNone=""

' add the URL parameters to the MM_keepURL string
For Each Item In Request.QueryString
  NextItem = "&" & Item & "="
  If (InStr(1,MM_removeList,NextItem,1) = 0) Then
	MM_keepURL = MM_keepURL & NextItem & Server.URLencode(Request.QueryString(Item))
  End If
Next

' add the Form variables to the MM_keepForm string
For Each Item In Request.Form
  NextItem = "&" & Item & "="
  If (InStr(1,MM_removeList,NextItem,1) = 0) Then
	MM_keepForm = MM_keepForm & NextItem & Server.URLencode(Request.Form(Item))
  End If
Next

' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
if (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
if (MM_keepURL <> "")  Then MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
if (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)

' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
  If (firstItem <> "") Then
	MM_joinChar = "&"
  Else
	MM_joinChar = ""
  End If
End Function
%>
			<%
' *** Move To Record: set the strings for the first, last, next, and previous links

MM_keepMove = MM_keepBoth
MM_moveParam = "index"

' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size > 0) Then
  MM_moveParam = "offset"
  If (MM_keepMove <> "") Then
	params = Split(MM_keepMove, "&")
	MM_keepMove = ""
	For i = 0 To UBound(params)
	  nextItem = Left(params(i), InStr(params(i),"=") - 1)
	  If (StrComp(nextItem,MM_moveParam,1) <> 0) Then
		MM_keepMove = MM_keepMove & "&" & params(i)
	  End If
	Next
	If (MM_keepMove <> "") Then
	  MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
	End If
  End If
End If

' set the strings for the move to links
If (MM_keepMove <> "") Then MM_keepMove = MM_keepMove & "&"
urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="
MM_moveFirst = urlStr & "0"
MM_moveLast  = urlStr & "-1"
MM_moveNext  = urlStr & Cstr(MM_offset + MM_size)
prev = MM_offset - MM_size
If (prev < 0) Then prev = 0
MM_movePrev  = urlStr & Cstr(prev)
%>
			<table width="100%" border="0" cellspacing="0" cellpadding="0">
			  <tr> 
				<td height="18" valign="top"> 
				  <table width="100%" border="0" cellspacing="0" cellpadding="0">
					<tr> 
					  <td> 
						<table width="100%" border="0" cellspacing="0" cellpadding="0" height="72" background="title/busca_por_filme.gif">
						  <tr> 
							<td> 
							  <table width="100%" height="72">
								<tr> 
								  <td width="46%"> </td>
								</tr>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> 
						<table width="96%" align="center" cellpadding="0" cellspacing="0" border="0">
						  <tr> 
							<td><font size="2" face="Tahoma, Verdana">Foram 
							encontrados 
							  <b><%=(filme_total)%></b> filmes com a palavra (<font color="0586E6"> 
							  <b><%= Request.Form("titulo") %></b></font> )</font> 
							  <% Response.write busca_filme %>
							</td>
						  </tr>
						  <tr> 
							<td> </td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> 
						<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
						  <tr> 
							<td> 
							  <table width="100%">
								<%
startrw = 0
endrw = HLooper1__index
numberColumns = 5
numrows = 4
while((numrows <> 0) AND (Not filme.EOF))
	startrw = endrw + 1
	endrw = endrw + numberColumns
 %>
								<tr align="center" valign="top"> 
								  <%
While ((startrw <= endrw) AND (Not filme.EOF))
%>
								  <td> 
									<table width="130" border="0" cellspacing="0" cellpadding="0" align="center">
									  <tr align="center"> 
										<td width="16%"><a href="ficha_tecnica.asp?id_filme=<%=(filme.Fields.Item("id_filme").Value)%>" onMouseOver="window.status='<%=(filme.Fields.Item("titulo").Value)%>';return true" onMouseOut="window.status='<%=(filme.Fields.Item("titulo").Value)%>';return true"><img src="dvd/peq/<%=(filme.Fields.Item("id_filme").Value)%>.jpg" width="80" height="115" vspace="10" border="1" style="border-color:#5191D1" alt="<%=(filme.Fields.Item("titulo").Value)%>"></a></td>
									  </tr>
									  <tr valign="top"> 
										<td width="16%" height="28"> 
										  <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
											<tr> 
											  <td align="center"><b><font size="1" face="Verdana, Arial, Helvetica, sans-serif"> 
												<%=(filme.Fields.Item("titulo").Value)%></font></b></td>
											</tr>
										  </table>
										</td>
									  </tr>
									  <tr> 
										<td width="16%" align="center"> 
										  <table width="80" border="0" cellspacing="0" cellpadding="0">
											<tr> 
											  <td align="center" height="18"><img src="images/sinopse.gif" width="10"></td>
											  <td height="18"><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><a href="ficha_tecnica.asp?id_filme=<%=(filme.Fields.Item("id_filme").Value)%>"><font color="#000000">
												Sinopse</font></a></font></td>
											</tr>
										  </table>
										</td>
									  </tr>
									</table>
								  </td>
								  <%
	startrw = startrw + 1
	filme.MoveNext()
	Wend
	%>
								</tr>
								<%
 numrows=numrows-1
 Wend
 %>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td height="40" align="center"> 
						<table width="100%" cellpadding="0" cellspacing="0" border="0" align="center">
						  <tr> 
							<td valign="bottom" height="60"> 
							  <% If Not MM_atTotal Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_moveLast%>"><img src="images/ir_fim.png" border=0 alt="Últimos"></a> 
										</td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end Not MM_atTotal %>
							  <% If Not MM_atTotal Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_moveNext%>"><img src="images/ir.png" border=0 alt="Próximo"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end Not MM_atTotal %>
							  <% If MM_offset <> 0 Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_movePrev%>"><img src="images/voltar.png" border=0 alt="Anterior"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end MM_offset <> 0 %>
							  <% If MM_offset <> 0 Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td align="center" valign="middle" height="20"><a href="<%=MM_moveFirst%>"><img src="images/voltar_inicio.png" border=0 alt="Primeiros"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end MM_offset <> 0 %>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
				  </table>
				</td>
			  </tr>
			  <tr> 
				<td> 
				  <table width="92%" cellpadding="0" cellspacing="0" border="0" align="center">
					<tr> 
					  <td align="right" height="12"><img src="imagens/1x1_transparente.gif" width="1" height="1"></td>
					</tr>
					<tr> 
					  <td align="right"><font size="2" face="Tahoma, Verdana">
						Filme exibidos  <font color="046EBB"><b><%=(filme_first)%></b></font> <font color="#000000"> 
						 até</font><font size="2" face="Tahoma, Verdana">  
						</font><font color="046EBB"><b><%=(filme_last)%></b></font>  Total  <b><%=(filme_total)%></b></font></td>
					</tr>
					<tr> 
					  <td align="right"> </td>
					</tr>
				  </table>
				</td>
			  </tr>
			</table>
			<% End If ' end Not filme.EOF Or NOT filme.BOF %>
			<table width="100%" border="0" cellspacing="0" cellpadding="0">
			  <tr> 
				<td height="18" valign="top"> 
				  <% If filme.EOF And filme.BOF Then %>


				  <table width="100%" border="0" cellspacing="0" cellpadding="0">
					<tr> 
					  <td> 
						<table width="100%" border="0" cellspacing="0" cellpadding="0" height="72" background="title/busca_por_filme.gif">
						  <tr> 
							<td> 
							  <table width="100%" height="72">
								<tr> 
								  <td width="46%"> </td>
								</tr>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> 
						<table width="96%" align="center" cellpadding="0" cellspacing="0" border="0">
						  <tr> 
							<td> </td>
						  </tr>
						  <tr> 
							<td><font size="2" face="Tahoma, Verdana">A palavra 
							utilizada (<font color="0586E6"> <%= Request.Form("titulo") %></font> 
							) para buscar o filme desejado não foi encontrada. 
							Você pode ter digitado a palavra de forma incorreta 
							  <% if categoria__MMColParam <> "" then
							  Response.write "e/ou o filme não corresponde à categoria ( "
							  Response.write "<font color=""0586E6"">"
							  Response.write categoria.Fields.Item("genero").Value
							  Response.write "</font>"
							  Response.write " ) em que foi realizado a pesquisa"
							  End if %>
							  .</font>  <font size="2" face="Tahoma"><b>
							Estamos constantemente atualizando nosso acervo de filmes com clássicos e lançamentos do mercado cinematográfico para melhor atender. </b>Qualquer informação entre em <b>
							<a href="contato.asp">contato</a></b>.</font>
							  <p><font size="2" face="Tahoma, Verdana">
							Utilize o campo abaixo para efetuar a pesquisa em 
							todas as categorias.</font></p>
							</td>
						  </tr>
						  <tr> 
							<td> </td>
						  </tr>
						  <tr> 
							<td height="30"> 
							  <form name="form1" method="post" action="busca_simples.asp">
								<table width="400" border="0" cellspacing="0" cellpadding="0">
								  <tr> 
									<td width="210"> 
									  <input type="text" name="titulo" style="font-family : Verdana;font-size : 12px;width : 206px;">
									</td>
									<td> 
									  <input type="image" border="0" name="Buscar" src="images/buscar.jpg" onClick="FDK_AddNonBlankValidation('form1','document.form1.titulo',true,'\'Digite o título do filme !\'');FDK_Validate('form1',true,false,'Atenção! Club Video Locadora');return document.MM_returnValue">
									</td>
								  </tr>
								</table>
							  </form>
							</td>
						  </tr>
						</table>
						<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0">
							<p align="left"><font size="2" face="Tahoma, Verdana">Você sabia que pode fazer suas buscas no nosso portal utilizando o nome do 
							<font color="#0176C8"> <b><i>Diretor</i></b></font> ou 
							<font color="#0176C8"> <b><i>Ator</i></b></font>, 
							<font color="#0176C8"> <i><b>Título Original</b></i> 
							</font>ou <font color="#0176C8"> <i><b>Traduzido</b></i></font>?
						   
							</font></p>
						  <tr> 
							<td height="40"> </td>
						  </tr>
						  <tr> 
							<td height="75"><img src="images/title/sugestao.gif" width="776" height="72"></td>
						  </tr>
						  <tr> 
							<td> </td>
						  </tr>
						  <tr> 
							<td> 
							  <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
								<tr> 
								  <td><iframe name="topo" src="dvd_sugestivo.asp" width="100%" height="220" scrolling="no" frameborder="no" hspace="0" vspace="0"></iframe> 
								  </td>
								</tr>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> </td>
					</tr>
				  </table>
				  <% End If ' end filme.EOF And filme.BOF %>
				</td>
			  </tr>
			</table>
</td>
  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"> </td>
  <td class="copy" align="center" background="images/fio_cinza_topo_grande.gif"> </td>
  <td background="images/direito_s.gif"> </td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"></td>
  <td class="copy" align="center">Club Vídeo - Rua Eustáquio Bastos, nº 51, Ilhéus - Bahia<br>
					Copyright ©
								  <% Response.write (Year(now())) %>
					  - Todos os direitos reservados - Denuncie a Pirataria. 
	Disque 0800-113941</td>
  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td><img src="images/canto_esquerdo_2.gif" width="11" height="11"></td>
  <td background="images/bott_s.gif"></td>
  <td><img src="images/canto_direito_2.gif" width="11" height="11"></td>
 </tr>
</tbody>
</table>
</body>
</html>
<%
filme.Close()
%>
<%
if categoria__MMColParam <> "" then
categoria.Close()
End if
%>

Compartilhar este post


Link para o post
Compartilhar em outros sites

no formulario de busca use o padrão GET para o metodo e passe na querystring de paginação o valor do campo, entendeu?

Compartilhar este post


Link para o post
Compartilhar em outros sites

<form name="form1" method="post" action="busca_simples.asp"> <<< Errado

 

<form name="form1" method="get" action="busca_simples.asp"> <<< Correto

 

Onde estiver Request.Form, coloque Request.QueryString

 

 

No link da paginação, você acrescenta os campos que você recuperou através do Request.QueryString .

 

Você encontra exemplos de paginação em nosso Laboratório de Scripts.

Compartilhar este post


Link para o post
Compartilhar em outros sites

<form name="form1" method="post" action="busca_simples.asp"> <<< Errado

 

<form name="form1" method="get" action="busca_simples.asp"> <<< Correto

 

Onde estiver Request.Form, coloque Request.QueryString

 

 

No link da paginação, você acrescenta os campos que você recuperou através do Request.QueryString .

 

Você encontra exemplos de paginação em nosso Laboratório de Scripts.

 

Estou fazendo os testes amigo, agradeço sua ajuda

Obrigado mesmo.

 

Estou ja vendo o laboratorio de scripts para tentar solucior o problema

 

Estou fazendo uns testes mais a parte da paginação indica o total, mostra os 20 primeiros e não da a opção de seguir para próxima pagina. testei algumas modificações que encontrei no laboratório de scripts e não obtive sucesso ainda, mais realmente tenho de agradecer o esforço de todos aqui para que consigamos solucionar problemas.

 

Assim que resolver a parte da paginação vou tentar solucioar a parte dos filtros da busca... selecionando a tabela a ser consultada, e não consultar o "geral"

Compartilhar este post


Link para o post
Compartilhar em outros sites

Bacana.

 

Qualquer dúvida poste aqui.

Compartilhar este post


Link para o post
Compartilhar em outros sites

olha este exemplo bem fácil

 

<%@LANGUAGE=VBScript%>
<%
' Define variables
dim recordsonpage, requestrecords, offset, allrecords, hiddenrecords, showrecords, lastrecord, recordcounter, pagelist, pagelistcounter

' DB connection
dim Conn
Set Conn = Server.CreateObject("ADODB.Connection")
  sConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
  "Data Source=" & Server.MapPath("cddatabase.mdb") & ";" & _
  "Persist Security Info=True"
Conn.Open(sConnection)

' records por pagina
recordsonpage = 10

' conta  records
allrecords = 0
set rs = conn.Execute("SELECT * FROM cds")
do until rs.EOF
  allrecords = allrecords + 1
  rs.movenext
loop


offset = request.querystring("offset")
if offset = 0 OR offset = "" then
  requestrecords = 0
else
  requestrecords = requestrecords + offset
end if

' abre database
set rs = conn.Execute("SELECT * FROM cds ORDER BY cdid")


hiddenrecords = requestrecords
do until hiddenrecords = 0 OR rs.EOF
  hiddenrecords = hiddenrecords - 1
  rs.movenext
  if rs.EOF then
	lastrecord = 1
  end if
loop
%>

<html>
 <head>
  <title>CD Database</title>
  <meta http-equiv="author" content="Tranzity">
 </head>
<body>

<table cellspacing="2" cellpadding="2" border="1" width="400">

<%
' imprime registros na tabela 
showrecords = recordsonpage
recordcounter = requestrecords
do until showrecords = 0 OR rs.EOF
recordcounter = recordcounter + 1
%>

 <tr>
  <td><b><% = recordcounter %></b></td>
  <td><% = rs("cdid") %></td>
  <td><% = rs("title") %></td>
 </tr>

<%
  showrecords = showrecords - 1
  rs.movenext
  if rs.EOF then
	lastrecord = 1
  end if
loop
%>

</table>

<p>

<table cellspacing="2" cellpadding="2" border="1" width="400">
 <tr>
  <td><% if requestrecords <> 0 then %><a href="paging.asp?offset=<% = requestrecords - recordsonpage %>">Prev Page</a><% else %>Anterior<% end if %></td>
  <td><% if lastrecord <> 1 then %>	<a href="paging.asp?offset=<% = requestrecords + recordsonpage %>">Next Page</a><% else %>Próxima<% end if %></td>
 </tr>
 <tr>
  <td colspan="2">pagelist:
<%
pagelist = 0
pagelistcounter = 0
do until pagelist > allrecords  
  pagelistcounter = pagelistcounter + 1
%>
<a href="paging.asp?offset=<% = pagelist %>"><% = pagelistcounter %></a>
<%
  pagelist = pagelist + recordsonpage
loop
%>
  </td>
 </tr>
</table>

<%
' Closes conection
rs.close
Conn.close
%>

</body>
</html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Legal xanburzum

 

eu havia testado esse formato, mais aconteceu a mesma coisa... Não apareceu a opção da proxima página, estou tentando revisar o codigo atual para vver se ta passando algo que eu num vi :{

 

Passei o dia revisando o código e fazendo testes e não consegui solucionar o problema. A solução que utilizei é temporaria, aumentei o tamanho da página para 100 registros como resposta a consulta feita.

 

Dai vem o problema 2, como estou tentando fazer com que a busca possa ser por ator, titulo original e traduzido, diretor e por parte da sinopse. Podendo selecionar num box qua opção seria consultada.

 

Mais essa paginação da me deixando com a cabeça rodando. :{

Tomara que alguém consiga bater o olho no código e veja o que tem de errado pq eu ja fiz isso umas 300 vezes ;\

 

No aguardo!

Compartilhar este post


Link para o post
Compartilhar em outros sites

Bem.. depois de fazer algums mudanças a paginação (links de ir/voltar) apareceram, e o link para proxima página é "http://www.exemplo.com.br/busca_simples.asp?titulo=amor&imageField2.x=0&imageField2.y=0&id_genero=&offset=5"

 

O Código atualmente está assim:

 

<td> 
						<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
						  <tr> 
							<td> 
							  <table width="100%">
								<%
startrw = 0
endrw = HLooper1__index
numberColumns = 5
numrows = 4
while((numrows <> 0) AND (Not filme.EOF))
	startrw = endrw + 1
	endrw = endrw + numberColumns
 %>
								<tr align="center" valign="top"> 
								  <%
While ((startrw <= endrw) AND (Not filme.EOF))
%>
								  <td> 
									<table width="130" border="0" cellspacing="0" cellpadding="0" align="center">
									  <tr align="center"> 
										<td width="16%"><a href="ficha_tecnica.asp?id_filme=<%=(filme.Fields.Item("id_filme").Value)%>" onMouseOver="window.status='<%=(filme.Fields.Item("titulo").Value)%>';return true" onMouseOut="window.status='<%=(filme.Fields.Item("titulo").Value)%>';return true"><img src="dvd/peq/<%=(filme.Fields.Item("id_filme").Value)%>.jpg" width="80" height="115" vspace="10" border="1" style="border-color:#5191D1" alt="<%=(filme.Fields.Item("titulo").Value)%>"></a></td>
									  </tr>
									  <tr valign="top"> 
										<td width="16%" height="28"> 
										  <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
											<tr> 
											  <td align="center"><b><font size="1" face="Verdana, Arial, Helvetica, sans-serif"> 
												<%=(filme.Fields.Item("titulo").Value)%></font></b></td>
											</tr>
										  </table>
										</td>
									  </tr>
									  <tr> 
										<td width="16%" align="center"> 
										  <table width="80" border="0" cellspacing="0" cellpadding="0">
											<tr> 
											  <td align="center" height="18"><img src="images/sinopse.gif" width="10"></td>
											  <td height="18"><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><a href="ficha_tecnica.asp?id_filme=<%=(filme.Fields.Item("id_filme").Value)%>"><font color="#000000">
												Sinopse</font></a></font></td>
											</tr>
										  </table>
										</td>
									  </tr>
									</table>
								  </td>
								  <%
	startrw = startrw + 1
	filme.MoveNext()
	Wend
	%>
								</tr>
								<%
 numrows=numrows-1
 Wend
 %>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td height="40" align="center"> 
						<table width="100%" cellpadding="0" cellspacing="0" border="0" align="center">
						  <tr> 
							<td valign="bottom" height="60"> 
							  <% If Not MM_atTotal Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_moveLast%>"><img src="images/ir_fim.png" border=0 alt="Últimos"></a> 
										</td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end Not MM_atTotal %>
							  <% If Not MM_atTotal Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_moveNext%>"><img src="images/ir.png" border=0 alt="Próximo"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end Not MM_atTotal %>
							  <% If MM_offset <> 0 Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_movePrev%>"><img src="images/voltar.png" border=0 alt="Anterior"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end MM_offset <> 0 %>
							  <% If MM_offset <> 0 Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td align="center" valign="middle" height="20"><a href="<%=MM_moveFirst%>"><img src="images/voltar_inicio.png" border=0 alt="Primeiros"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end MM_offset <> 0 %>
							</td>
						  </tr>
						</table>
					  </td>

Entretanto ainda recebo a resposta de busca em branco quando tento ir para página seguinte...

Compartilhar este post


Link para o post
Compartilhar em outros sites

Oi gente!

Desculpem incomodar novamente

mais dessa vez tive progresso com a paginação

ela aparece, mais na hora de executar a proxima pagina o link é http://www.clubvideo.com.br/busca_simples_...amp;Buscar.y=23&titulo=amor&Buscar.x=12&Buscar.y=23&offset=40 ou seja, inclui a mesma informação resultando numa consulta falsa, como se fosse a mesma consulta.

 

exemplo: busco por amor, a busca sai correta, mais ao tentar acessar a pagina 2 da paginação a resposta é de que nada foi encontrato com a palavra "amor, amor" se removo manualmente o item em negrito no link anterior a resposta é correta e vem a segunda.. terceira... mais sempre nos links da paginação vem com esse erro... o link que deveria ser indicado é http://www.clubvideo.com.br/busca_simples_...3&offset=20

Compartilhar este post


Link para o post
Compartilhar em outros sites

Resolvido gente, acabei de solucionar o problema com a paginação.

 

' add the Form variables to the MM_keepForm string
For Each Item In Request.Form
  NextItem = "&" & Item & "="
  If (InStr(1,MM_removeList,NextItem,1) = 0) Then
	MM_keepForm = MM_keepForm & NextItem & Server.URLencode(Request.Form(Item))
  End If
Next

Linhas 379 a 385 o valor declarado no code tem de ser Request.Form pois se for Request.QueryString ele faz uma repetição da solicitação ao invés de apenas seguir a consulta para um proximo registro.

 

o código ficou assim:

 

<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/Cinepipoca.asp" -->
<%
Dim filme__MMColParam
filme__MMColParam = "AAAAZZZZCXCAAJAJA"
if (Request.QueryString("titulo") <> "") then filme__MMColParam = Request.QueryString("titulo")
%>
<%
function preparaPalavra(str)
 preparaPalavra = replace(str,"a","[a,á,à,ã,â,ä]")
 preparaPalavra = replace(preparaPalavra,"e","[e,é,è,ê,ë]")
 preparaPalavra = replace(preparaPalavra,"i","[i,í,ì,î,ï]")
 preparaPalavra = replace(preparaPalavra,"o","[o,ó,ò,õ,ô,ö]")
 preparaPalavra = replace(preparaPalavra,"u","[u,ú,ù,û,ü]")
 preparaPalavra = replace(preparaPalavra,"c","[c,ç]")
 preparaPalavra = preparaPalavra
end function


ip = Request.ServerVariables("REMOTE_ADDR")
Dim categoria__MMColParam
categoria__MMColParam = Trim(Request.QueryString("id_genero"))

set filme = Server.CreateObject("ADODB.Recordset")
filme.ActiveConnection = MM_Cinepipoca_STRING

	if categoria__MMColParam = "" then

		filme.Source = "SELECT *  FROM filme  WHERE titulo LIKE '%" + Replace(preparaPalavra(filme__MMColParam), "'", "''") + "%' OR titulo_original LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR direcao LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores1 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores2 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores3 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores4 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores5 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores6 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores7 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores8 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores9 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores10 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' ORDER BY titulo ASC"
	
	else
	
		filme.Source = "SELECT *  FROM filme  WHERE (titulo LIKE '%" + Replace(preparaPalavra(filme__MMColParam), "'", "''") + "%' OR titulo_original LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR direcao LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores1 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores2 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores3 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores4 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores5 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores6 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores7 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores8 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores9 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%' OR atores10 LIKE '%" + Replace(filme__MMColParam, "'", "''") + "%') AND  id_genero = "&categoria__MMColParam&" ORDER BY titulo ASC"
	
	End if



filme.CursorType = 0
filme.CursorLocation = 2
filme.LockType = 3
filme.Open()
filme_numRows = 0
%>

<%
if categoria__MMColParam <> "" then
set categoria = Server.CreateObject("ADODB.Recordset")
categoria.ActiveConnection = MM_Cinepipoca_STRING
categoria.Source = "SELECT * FROM genero WHERE codigo = "&categoria__MMColParam&""
categoria.CursorType = 0
categoria.CursorLocation = 2
categoria.LockType = 3
categoria.Open()
categoria_numRows = 0
End if
%>
<%
				  
Set msg = Server.CreateObject("CDONTS.NewMail")

Dim msg, HTML
				  
HTML = "<!DOCTYPE HTML PUBLIC ""-//IETF//DTD HTML//EN"">"
HTML = HTML & "<html><head><title>Club Video - Resultado de busca dentro do Site!</title></head>"
HTML = HTML & "<body bgcolor=#FFFFFF text=#000000><font face=Tahoma size=2>"
HTML = HTML & "Data: "&Date&"<Br>"
HTML = HTML & "IP: "&ip&"<Br><br>"

If Session("Aut") = "Ok" Then
	HTML = HTML & "Cliente: Id "&Session("IDCliente")&" - "&Session("IDnome")&"<Br><br>"
End if

HTML = HTML & "Palavra Buscada: <b>"&filme__MMColParam&"</b><Br>"
if categoria__MMColParam <> "" then
HTML = HTML & "Gênero: <b>"&categoria.Fields.Item("genero").Value&"</b><Br>"
End if

If Not filme.EOF Or Not filme.BOF Then
	HTML = HTML & "<br><font color=#0000FF>Busca Encontrada Com Sucesso!</font>"
End if

If filme.EOF And filme.BOF Then
	HTML = HTML & "<br><font color=#FF0000>Busca Não Encontrada!</font>"
End if

HTML = HTML & "</font>"
HTML = HTML & "</body></html>"
				  
msg.From = "contato@cluvideo.com.br"
msg.To = "rodriqo@gmail.com"
msg.Subject = "Club Video - Resultado de busca dentro do Site!"
msg.BodyFormat = 0
msg.MailFormat = 0
msg.Body = HTML
msg.Send
						  
Set msg = Nothing
%>

<%
Dim HLooper1__numRows
HLooper1__numRows = 20
Dim HLooper1__index
HLooper1__index = 0
filme_numRows = filme_numRows + HLooper1__numRows
%>
<html>
<head>
<meta http-equiv="Content-Language" content="pt-br" />
<meta http-equiv="Cache-Control" content="no-cache, no-store" />
<meta http-equiv="Pragma" content="no-cache, no-store" />
<meta name="robots" content="index, follow" />
<meta name="description" content="Club Video - Prazer em atender você!!! Os melhores filmes, promoções, lan-house, Recarga Online e diversos serviços especializados. Tudo ao seu alcance!" />
<meta name="keywords" content="locadora, cinema, dvd, ilhéus, ios, serviços, classificados, compras, entretenimento, animação, filmes, arte, cultura, bahia, crianças, diversão, vhs, trailers, sinopse, suspense, drama, ação, aventura, comédia, animação, romance, terror, policial, ficção, agenda, informação, clima" />
<meta name="URL" content="http://www.clubvideo.com.br">
<meta name="SUBJECT" content="Video Locadora">
<meta name="RATING" content="GENERAL">
<meta name="audience" content="all">
<meta name="LANGUAGE" content="Portuguese">
<meta name="ROBOTS" content="index,follow">
<meta name="GOOGLEBOT" content="index,follow">
<meta name="Dc.title" content="Club Video" />
<meta name="Author" content="Rodrigo F. Santos - wwBR.net" />
<link rel="SHORTCUT ICON" href="http://www.clubvideo.com.br/favicon.ico" />
<link rel="apple-touch-icon" href="http://www.clubvideo.com.br/favicon.jpg" />
<title>Club Video - Prazer em Atender Você!</title>
<link rel="stylesheet" href="estilo.css" type="text/css">
<link rel="stylesheet" href="estilo_cine.css" type="text/css">
<link rel="stylesheet" href="noticias/estilo_noticias.css" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
<script language=javascript>
function msg(){
window.status="Club Video - Prazer em Atender você";
return true;
}
</script>

<style type="text/css">
<!--
.style1 {
	color: #FF0000;
	font-weight: bold;
}
-->
</style>
<style type="text/css">
.sTitle {
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" align="center" link="#0176C8" vlink="#0176C8" alink="#0176C8" onLoad="msg()" rightmargin="0" bottommargin="0">
<table class="container" align="center" border="0" cellpadding="0" cellspacing="0">
 <tbody><tr>
  <td width="11"><img src="images/canto_esquerdo_1.gif" width="11" height="11"></td>
  <td width="100%" background="images/centro_top.gif"></td>
  <td width="11"><img src="images/canto_direito_1.gif" width="11" height="11"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"></td>
  <td><table width="784" border="0" cellpadding="0" cellspacing="0" height="68">
	<tbody><tr>
	 <td valign="top">
				<!--#include file="topo_logo_teste.asp" --></td>
	</tr>
   </tbody></table></td>
  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"> </td>
	 <td class="navTable">
		<iframe name="I1" src="menu.htm" width="778" height="40" scrolling="no" frameborder="no" hspace="0" vspace="0" marginwidth="1" marginheight="1"></iframe>
	</td>

  <td background="images/direito_s.gif"> </td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"></td>
	 <td class="navTable">
		 </td>

  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif" height="340"></td>
  <td valign="top" align="left">
<% If Not filme.EOF Or Not filme.BOF Then %>
			
<%
'  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables

' set the record count
filme_total = filme.RecordCount

' set the number of rows displayed on this page
If (filme_numRows < 0) Then
  filme_numRows = filme_total
Elseif (filme_numRows = 0) Then
  filme_numRows = 1
End If

' set the first and last displayed record
filme_first = 1
filme_last  = filme_first + filme_numRows - 1

' if we have the correct record count, check the other stats
If (filme_total <> -1) Then
  If (filme_first > filme_total) Then filme_first = filme_total
  If (filme_last > filme_total) Then filme_last = filme_total
  If (filme_numRows > filme_total) Then filme_numRows = filme_total
End If
%>
<%
' *** Recordset Stats: if we don't know the record count, manually count them

If (filme_total = -1) Then

  ' count the total records by iterating through the recordset
  filme_total=0
  While (Not filme.EOF)
	filme_total = filme_total + 1
	filme.MoveNext
  Wend

  ' reset the cursor to the beginning
  If (filme.CursorType > 0) Then
	filme.MoveFirst
  Else
	filme.Requery
  End If

  ' set the number of rows displayed on this page
  If (filme_numRows < 0 Or filme_numRows > filme_total) Then
	filme_numRows = filme_total
  End If

  ' set the first and last displayed record
  filme_first = 1
  filme_last = filme_first + filme_numRows - 1
  If (filme_first > filme_total) Then filme_first = filme_total
  If (filme_last > filme_total) Then filme_last = filme_total

End If
%>
<%
Dim MM_paramName
%>
<%
' *** Move To Record and Go To Record: declare variables

Set MM_rs	= filme
MM_rsCount   = filme_total
MM_size	  = filme_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName <> "") Then
  MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
End If
%>
<%
' *** Move To Record: handle 'index' or 'offset' parameter

if (Not MM_paramIsDefined And MM_rsCount <> 0) then

  ' use index parameter if defined, otherwise use offset parameter
  r = Request.QueryString("index")
  If r = "" Then r = Request.QueryString("offset")
  If r <> "" Then MM_offset = Int(r)

  ' if we have a record count, check if we are past the end of the recordset
  If (MM_rsCount <> -1) Then
	If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
	  If ((MM_rsCount Mod MM_size) > 0) Then		 ' last page not a full repeat region
		MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
	  Else
		MM_offset = MM_rsCount - MM_size
	  End If
	End If
  End If

  ' move the cursor to the selected record
  i = 0
  While ((Not MM_rs.EOF) And (i < MM_offset Or MM_offset = -1))
	MM_rs.MoveNext
	i = i + 1
  Wend
  If (MM_rs.EOF) Then MM_offset = i  ' set MM_offset to the last possible record

End If
%>
<%
' *** Move To Record: if we dont know the record count, check the display range

If (MM_rsCount = -1) Then

  ' walk to the end of the display range for this page
  i = MM_offset
  While (Not MM_rs.EOF And (MM_size < 0 Or i < MM_offset + MM_size))
	MM_rs.MoveNext
	i = i + 1
  Wend

  ' if we walked off the end of the recordset, set MM_rsCount and MM_size
  If (MM_rs.EOF) Then
	MM_rsCount = i
	If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount
  End If

  ' if we walked off the end, set the offset based on page size
  If (MM_rs.EOF And Not MM_paramIsDefined) Then
	If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
	  If ((MM_rsCount Mod MM_size) > 0) Then
		MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
	  Else
		MM_offset = MM_rsCount - MM_size
	  End If
	End If
  End If

  ' reset the cursor to the beginning
  If (MM_rs.CursorType > 0) Then
	MM_rs.MoveFirst
  Else
	MM_rs.Requery
  End If

  ' move the cursor to the selected record
  i = 0
  While (Not MM_rs.EOF And i < MM_offset)
	MM_rs.MoveNext
	i = i + 1
  Wend
End If
%>
<%
' *** Move To Record: update recordset stats

' set the first and last displayed record
filme_first = MM_offset + 1
filme_last  = MM_offset + MM_size
If (MM_rsCount <> -1) Then
  If (filme_first > MM_rsCount) Then filme_first = MM_rsCount
  If (filme_last > MM_rsCount) Then filme_last = MM_rsCount
End If

' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters

' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "="
MM_keepURL="":MM_keepForm="":MM_keepBoth="":MM_keepNone=""

' add the URL parameters to the MM_keepURL string
For Each Item In Request.QueryString
  NextItem = "&" & Item & "="
  If (InStr(1,MM_removeList,NextItem,1) = 0) Then
	MM_keepURL = MM_keepURL & NextItem & Server.URLencode(Request.QueryString(Item))
  End If
Next

' add the Form variables to the MM_keepForm string
For Each Item In Request.Form
  NextItem = "&" & Item & "="
  If (InStr(1,MM_removeList,NextItem,1) = 0) Then
	MM_keepForm = MM_keepForm & NextItem & Server.URLencode(Request.Form(Item))
  End If
Next

' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
if (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
if (MM_keepURL <> "")  Then MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
if (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)

' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
  If (firstItem <> "") Then
	MM_joinChar = "&"
  Else
	MM_joinChar = ""
  End If
End Function
%>
			<%
' *** Move To Record: set the strings for the first, last, next, and previous links

MM_keepMove = MM_keepBoth
MM_moveParam = "index"

' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size > 0) Then
  MM_moveParam = "offset"
  If (MM_keepMove <> "") Then
	params = Split(MM_keepMove, "&")
	MM_keepMove = ""
	For i = 0 To UBound(params)
	  nextItem = Left(params(i), InStr(params(i),"=") - 1)
	  If (StrComp(nextItem,MM_moveParam,1) <> 0) Then
		MM_keepMove = MM_keepMove & "&" & params(i)
	  End If
	Next
	If (MM_keepMove <> "") Then
	  MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
	End If
  End If
End If

' set the strings for the move to links
If (MM_keepMove <> "") Then MM_keepMove = MM_keepMove & "&"
urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="
MM_moveFirst = urlStr & "0"
MM_moveLast  = urlStr & "-1"
MM_moveNext  = urlStr & Cstr(MM_offset + MM_size)
prev = MM_offset - MM_size
If (prev < 0) Then prev = 0
MM_movePrev  = urlStr & Cstr(prev)
%>
			<table width="100%" border="0" cellspacing="0" cellpadding="0">
			  <tr> 
				<td height="18" valign="top"> 
				  <table width="100%" border="0" cellspacing="0" cellpadding="0">
					<tr> 
					  <td> 
						<table width="100%" border="0" cellspacing="0" cellpadding="0" height="72" background="title/busca_por_filme.gif">
						  <tr> 
							<td> 
							  <table width="100%" height="72">
								<tr> 
								  <td width="46%"> </td>
								</tr>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> 
						<table width="96%" align="center" cellpadding="0" cellspacing="0" border="0">
						  <tr> 
							<td><font size="2" face="Tahoma, Verdana">Foram 
							encontrados 
							  <b><%=(filme_total)%></b> filmes com a palavra (<font color="0586E6"> 
							  <b><%= Request.QueryString("titulo") %></b></font> )</font> 
							  <% Response.write busca_filme %>
							</td>
						  </tr>
						  <tr> 
							<td> </td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> 
						<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
						  <tr> 
							<td> 
							  <table width="100%">
<%
startrw = 0
endrw = HLooper1__index
numberColumns = 5
numrows = 4
while((numrows <> 0) AND (Not filme.EOF))
	startrw = endrw + 1
	endrw = endrw + numberColumns
%>
								<tr align="center" valign="top"> 
<%
While ((startrw <= endrw) AND (Not filme.EOF))
%>
								  <td> 
									<table width="130" border="0" cellspacing="0" cellpadding="0" align="center">
									  <tr align="center"> 
										<td width="16%"><a href="ficha_tecnica.asp?id_filme=<%=(filme.Fields.Item("id_filme").Value)%>" onMouseOver="window.status='<%=(filme.Fields.Item("titulo").Value)%>';return true" onMouseOut="window.status='<%=(filme.Fields.Item("titulo").Value)%>';return true"><img src="dvd/peq/<%=(filme.Fields.Item("id_filme").Value)%>.jpg" width="80" height="115" vspace="10" border="1" style="border-color:#5191D1" alt="<%=(filme.Fields.Item("titulo").Value)%>"></a></td>
									  </tr>
									  <tr valign="top"> 
										<td width="16%" height="28"> 
										  <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
											<tr> 
											  <td align="center"><b><font size="1" face="Verdana, Arial, Helvetica, sans-serif"> 
												<%=(filme.Fields.Item("titulo").Value)%></font></b></td>
											</tr>
										  </table>
										</td>
									  </tr>
									  <tr> 
										<td width="16%" align="center"> 
										  <table width="80" border="0" cellspacing="0" cellpadding="0">
											<tr> 
											  <td align="center" height="18"><img src="images/sinopse.gif" width="10"></td>
											  <td height="18"><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><a href="ficha_tecnica.asp?id_filme=<%=(filme.Fields.Item("id_filme").Value)%>"><font color="#000000">
												Sinopse</font></a></font></td>
											</tr>
										  </table>
										</td>
									  </tr>
									</table>
								  </td>
<%
	startrw = startrw + 1
	filme.MoveNext()
	Wend
%>
								</tr>
<%
 numrows=numrows-1
 Wend
%>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td height="40" align="center"> 
						<table width="100%" cellpadding="0" cellspacing="0" border="0" align="center">
						  <tr> 
							<td valign="bottom" height="60"> 
							  <% If Not MM_atTotal Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_moveLast%>"><img src="images/ir_fim.png" border=0 alt="Últimos"></a> 
										</td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end Not MM_atTotal %>
							  <% If Not MM_atTotal Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_moveNext%>"><img src="images/ir.png" border=0 alt="Próximo"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end Not MM_atTotal %>
							  <% If MM_offset <> 0 Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td height="20" align="center" valign="middle"><a href="<%=MM_movePrev%>"><img src="images/voltar.png" border=0 alt="Anterior"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end MM_offset <> 0 %>
							  <% If MM_offset <> 0 Then %>
							  <table border="0" width="12%" align="right">
								<tr> 
								  <td width="25%" align="center"> 
									<table width="100%" border="0" cellspacing="0" cellpadding="0">
									  <tr> 
										<td align="center" valign="middle" height="20"><a href="<%=MM_moveFirst%>"><img src="images/voltar_inicio.png" border=0 alt="Primeiros"></a></td>
									  </tr>
									</table>
								  </td>
								</tr>
							  </table>
							  <% End If ' end MM_offset <> 0 %>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
				  </table>
				</td>
			  </tr>
			  <tr> 
				<td> 
				  <table width="92%" cellpadding="0" cellspacing="0" border="0" align="center">
					<tr> 
					  <td align="right" height="12"><img src="imagens/1x1_transparente.gif" width="1" height="1"></td>
					</tr>
					<tr> 
					  <td align="right"><font size="2" face="Tahoma, Verdana">
						Filme exibidos  <font color="046EBB"><b><%=(filme_first)%></b></font> <font color="#000000"> 
						 até</font><font size="2" face="Tahoma, Verdana">  
						</font><font color="046EBB"><b><%=(filme_last)%></b></font>  Total  <b><%=(filme_total)%></b></font></td>
					</tr>
					<tr> 
					  <td align="right"> </td>
					</tr>
				  </table>
				</td>
			  </tr>
			</table>
			<% End If ' end Not filme.EOF Or NOT filme.BOF %>
			<table width="100%" border="0" cellspacing="0" cellpadding="0">
			  <tr> 
				<td height="18" valign="top"> 
				  <% If filme.EOF And filme.BOF Then %>


				  <table width="100%" border="0" cellspacing="0" cellpadding="0">
					<tr> 
					  <td> 
						<table width="100%" border="0" cellspacing="0" cellpadding="0" height="72" background="title/busca_por_filme.gif">
						  <tr> 
							<td> 
							  <table width="100%" height="72">
								<tr> 
								  <td width="46%"> </td>
								</tr>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> 
						<table width="96%" align="center" cellpadding="0" cellspacing="0" border="0">
						  <tr> 
							<td> </td>
						  </tr>
						  <tr> 
							<td><font size="2" face="Tahoma, Verdana">A palavra 
							utilizada (<font color="0586E6"> <%= Request.QueryString("titulo") %></font> 
							) para buscar o filme desejado não foi encontrada. 
							Você pode ter digitado a palavra de forma incorreta 
							  <% if categoria__MMColParam <> "" then
							  Response.write "e/ou o filme não corresponde à categoria ( "
							  Response.write "<font color=""0586E6"">"
							  Response.write categoria.Fields.Item("genero").Value
							  Response.write "</font>"
							  Response.write " ) em que foi realizado a pesquisa"
							  End if %>
							  .</font>  <font size="2" face="Tahoma"><b>
							Estamos constantemente atualizando nosso acervo de filmes com clássicos e lançamentos do mercado cinematográfico para melhor atender. </b>Qualquer informação entre em <b>
							<a href="contato.asp">contato</a></b>.</font>
							  <p><font size="2" face="Tahoma, Verdana">
							Utilize o campo abaixo para efetuar a pesquisa em 
							todas as categorias.</font></p>
							</td>
						  </tr>
						  <tr> 
							<td> </td>
						  </tr>
						  <tr> 
							<td height="30"> 
							  <form name="form1" method="get" action="busca_simples_teste.asp">
								<table width="400" border="0" cellspacing="0" cellpadding="0">
								  <tr> 
									<td width="210"> 
									  <input type="text" name="titulo" style="font-family : Verdana;font-size : 12px;width : 206px;">
									</td>
									<td> 
									  <input type="image" border="0" name="Buscar" src="images/buscar.jpg" onClick="FDK_AddNonBlankValidation('form1','document.form1.titulo',true,'\'Digite o título do filme !\'');FDK_Validate('form1',true,false,'Atenção! Club Video Locadora');return document.MM_returnValue">
									</td>
								  </tr>
								</table>
							  </form>
							</td>
						  </tr>
						</table>
						<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0">
							<p align="left"><font size="2" face="Tahoma, Verdana">Você sabia que pode fazer suas buscas no nosso portal utilizando o nome do 
							<font color="#0176C8"> <b><i>Diretor</i></b></font> ou 
							<font color="#0176C8"> <b><i>Ator</i></b></font>, 
							<font color="#0176C8"> <i><b>Título Original</b></i> 
							</font>ou <font color="#0176C8"> <i><b>Traduzido</b></i></font>?
						   
							</font></p>
						  <tr> 
							<td height="40"> </td>
						  </tr>
						  <tr> 
							<td height="75"><img src="images/title/sugestao.gif" width="776" height="72"></td>
						  </tr>
						  <tr> 
							<td> </td>
						  </tr>
						  <tr> 
							<td> 
							  <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
								<tr> 
								  <td><iframe name="topo" src="dvd_sugestivo.asp" width="100%" height="220" scrolling="no" frameborder="no" hspace="0" vspace="0"></iframe> 
								  </td>
								</tr>
							  </table>
							</td>
						  </tr>
						</table>
					  </td>
					</tr>
					<tr> 
					  <td> </td>
					</tr>
				  </table>
				  <% End If ' end filme.EOF And filme.BOF %>
				</td>
			  </tr>
			</table>
</td>
  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"> </td>
  <td class="copy" align="center" background="images/fio_cinza_topo_grande.gif"> </td>
  <td background="images/direito_s.gif"> </td>
 </tr>
 <tr>
  <td background="images/esquerdo_s_1.gif"></td>
  <td class="copy" align="center">Club Vídeo - Rua Eustáquio Bastos, nº 51, Ilhéus - Bahia<br>
					Copyright ©
								  <% Response.write (Year(now())) %>
					  - Todos os direitos reservados - Denuncie a Pirataria. 
	Disque 0800-113941</td>
  <td background="images/direito_s.gif"></td>
 </tr>
 <tr>
  <td><img src="images/canto_esquerdo_2.gif" width="11" height="11"></td>
  <td background="images/bott_s.gif"></td>
  <td><img src="images/canto_direito_2.gif" width="11" height="11"></td>
 </tr>
</tbody>
</table>
</body>
</html>
<%
filme.Close()
%>
<%
if categoria__MMColParam <> "" then
categoria.Close()
End if
%>

Agora só preciso resolver a parte do outro tópico, sobre os filtros de busca =D

 

vlws pela força de todos!

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.