Hotels Search
<%
userid1=trim(request("userid1"))
Dim conn ' Connnection Object
Call getconnection(conn)
Dim Rs ' Recordset Object
Dim Sql
Sql="select distinct b.rid,b.cid,b.name from planet_hotel a, region_country b,hc_hotel_roomprice c where a.cid=b.cid and a.city_id=c.city_id and c.active=1 order by b.name"
Set Rs=Conn.Execute(Sql)
dispheader="Hotels Search"
%>