|
After receiving a correctly formatted search, the DBSearch function will return each record matching the Search to a return page. After building your return html page you will then add the code below to have it be used as your Search Result / Return Page.
#*
Record Return Start tag. You use #* to begin your return results html. This specifies where the records returned from the database will begin to be placed within your Web page.
##
Return Field indicators. Between the Record Return Start tag and the Record Return End tag you will place any HTML and fields that will be drawn from the records that are returned. To specify a field name that is to be returned for every record returned as a result of the DBSearch, place the ## tag on either side of the field name you wish to capture return data from. (##FieldName##)
*#
Record Return End tag. You use *# as an ending indicator on your return results html. This specifies where any records and code returned from the database will stop being placed.
Example: (example code for a Search Result / Return Page)
#*
##firstname##
##lastname##
##date##
##recordnumber##
*#
©1995-2001 InfoDial, Inc.
|