Date:  12/14/2005 06:13:05 AM Msg ID:  002778
From:  Larry Zhang Thread:  002776
Subject:  Re: how to display more values?
I figured that out by myself. Thank you for your help, too.
Sent by FoxWeb Support on 12/13/2005 11:33:45 AM:
The ContactMine application contains examples of how to do this.  A very simple change to the code below would be:
 
SCAN
    Response.Write(results.Name + "<br>")
    Response.Write(results.Addr + "<br>")
    Response.Write(results.City + " " + results.State + " " + results.Zip + "<br>")
ENDSCAN
 
Of course if you want to format the address in a more appealing layout you will need to modify the HTML code.  Please keep in mind that you need to know (or learn) at least some HTML in order to use FoxWeb.

FoxWeb Support Team
support@foxweb.com email

Sent by Larry Zhang on 12/13/2005 11:25:15 AM:
Hi,
I haven't learned using forms yet. How do I display more than one value?
In your NameSearch.fwx, we have codes:
 
  SCAN
      Response.Write(results.Name + "<br>")
  ENDSCAN
 
It display names only.  How do I display name, address, city..... ???  Thank you.