BAHMAN
INTERNATIONAL CARGO
WORLDWIDE NETWORK
|
|
<%
if request("show") <> "" then
sql = "select * from locations,countries where locations.cid = "&request("id")&" and countries.coid = "&request("id")
set rs = con.execute(sql)
if not rs.eof then
%>
Country |
Location |
<%
do while not rs.eof
%>
<%=rs("name")%> |
<%=rs("location")%> |
<%
rs.movenext
loop
Else
Response.write "No locations in this country"
end if
rs.close
end if
%>
|