<%
if "" & Request.QueryString("cerca")="" then
'normale browsing
set rs=eseguiSQL("select * from immobiliare where id=" & indice)
if not rs.eof then
loca="Tipologia: " & rs("tit") & " "
%>
|
|
|
<%
set rs=eseguiSQL("select * from immobili where id_immobiliare=" & indice)
if not rs.eof then
while not rs.eof
testo=rs("txtdescrizione")
testoalt=("Località: " & rs("txtlocalita") & " - Valore: € " & FormatNumber(rs("numprezzo"),2,-1) & "")
%> | " border=0 alt="<%=XXXXXXXXXXXXXXXXX(testoalt)%>" onMouseOver="javascript:descrizione.innerHTML=''+this.alt+'';" onload="if(this.width>240){this.width=240}" onClick="javascript:window.open('popup.asp?foto=imm<%=indice%>/<%=rs("fot")%>&desc=<%=XXXXXXXXXXXXXXXX(testoalt)%>','','width=680,height=520,resizable=0,status=0,scrollbars=0,toolbar=0,location=0,directories=0,menubar=0')"> | <%=loca%>Località: <%=rs("txtlocalita")%> Valore: € <%=FormatNumber(rs("numprezzo"),2,-1)%>
<%=testo%> |  | <%
rs.movenext
wend
else
%>Non ci sono immobili in questa galleria | <%
end if
%>
|
<%
end if
else
'risultati ricerca
chiave=Request.QueryString("cerca")
%>
|
|
|
<%
set rs=eseguiSQL("select * from immobili where txtdescrizione LIKE '%" & chiave & "%' OR txtlocalita LIKE '%" & chiave & "%';")
if not rs.eof then
while not rs.eof
loca=""
set rs1=eseguiSQL("select * from immobiliare where id=" & rs("id_immobiliare") & ";")
if not rs1.eof then loca="Tipologia: " & rs1("tit") & " "
set rs1=nothing
testo=rs("txtdescrizione")
testoalt="Località: " & rs("txtlocalita") & " - Valore: € " & FormatNumber(rs("numprezzo"),2,-1) & ""
%> | " border=0 alt="<%=XXXXXXXXXXXXXXXXX(testoalt)%>" onMouseOver="javascript:descrizione.innerHTML=''+this.alt+'';" onload="if(this.width>240){this.width=240}" onClick="javascript:window.open('popup.asp?foto=imm<%=rs("id_immobiliare")%>/<%=rs("fot")%>&desc=<%=XXXXXXXXXXXXXXXX(testoalt)%>','','width=680,height=520,resizable=0,status=0,scrollbars=0,toolbar=0,location=0,directories=0,menubar=0')"> | <%=loca%>Località: <%=rs("txtlocalita")%> Valore: € <%=FormatNumber(rs("numprezzo"),2,-1)%>
<%=testo%> |  | <%
rs.movenext
wend
else
%>Nessun immobile trovato | <%
end if
%>
|
<%
end if
%>
|