home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / netprofessional / code / 02.03 / sherlock.Tango.src.txt < prev    next >
Text File  |  2010-09-21  |  796b  |  26 lines

  1. Listing 3: Search Site Code for Tango
  2. Tango Listing
  3. This an excerpt of the Results HTML from a Tango search action. You can see the comment used to delimit the information for Sherlock to interpret. When this is run, Tango will return the listing, with the HTML and code within the <@ROWS> tags iterated for each row of data returned from the database. The @@relevance tag is a variable that is being processed elsewhere for speed's sake.
  4.  
  5. <!-- Start List -->
  6. <UL>
  7. <UL>
  8. <@ROWS>
  9.  
  10. Then, add to the HTML code for each item returned:
  11.  
  12. <!--Start Row -->
  13. <A AREF="<@COLUMN URL>"><@COLUMN Name></A>
  14. <BR>
  15. <@COLUMN Address><BR>
  16. <@COLUMN City>, <@COLUMN State> <@COLUMN Zip><BR>
  17. <@COLUMN Phone>
  18. <!--Start Relevance -->
  19. <FONT COLOR=WHITE>
  20. @@relevance
  21. </FONT>
  22. <!--End Relevance -->
  23. <!--End Row -->
  24. </@ROWS>
  25.  
  26.