Ideas for Hacking This Script

  • Create new categories (see next chapters)

  • Modify templates in display script.

  • Create a search page that performs a keyword search on one or more fields. This is done using a where clause, for example:

    sql = "select * from data where data_category = " +
    current_category + " and where data_name like '%" +
    search_term + " %'";
    
  • Note that you'll need to create a form that collects a search_term variable.

  • Use if() statements to check to see whether a field has information in it before displaying it.

Get Essential ASP for Web Professionals now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.