zip code,postal code,zip code proximity,geo data,zip code search,postal code search,webservice,proximity searching,zip code radius search

 deutsche Version

How to use Edith: Distance in ASP?

In the following example all zip codes within the radius of 25 km around the zip code 30175 are shown. The example uses the XML-RPC-libraray by David Carter-Tod (http://david.carter-tod.com/XMLRPC/default.asp):

<!-- include libraray  -->
<!--#include virtual="/k4asp/xmlrpc.asp" -->
<%
    'prepare Parameter
    Dim paramList(3)
    Dim url
    paramList(0) = 1
    paramList(1) = "30175"
    paramList(2) = 25

    'function call
    url = "http://www.kontor4.de/edithdistance/distance.php"
    myresp = xmlRPC (url, "edithDistance.showRelated", paramList)

    'show result as table
    response.write( "<table border='1'>")
    for i = 0 to ubound(myresp)
        response.write("<tr><td>" & myresp(i).Item("plz"))
        response.write("</td><td>" & myresp(i).Item("distance"))
        response.write("</td></tr>")
    next
    response.write( "</table>")
%>