It is possible to add canned queries as a "Selections" button on the toolbar.
<
queries label="Selections
of restaurants">
<query
label="Restaurant in San Francisco"
dbwhere="t.City = 'san francisco'"
url="sfo" />
<query
label="Asian food"
dbwhere="
t.categoryID IN (3,4,5,6,7,11,12)"
url="asian"
/>
...
</
queries>
footer
Footer text displayed below the list of queries.
label
Introduction text displayed above the list of queries.
Attributes of query are as
follow:
dbwhere
SQL Where clause for the query.
label
Query title.
url
Key used to identity each query within the list. Each key can be used in links
within the page to force the control to display the corresponding query.
Example:
<a
href="javascript:__doPostBack('evo1','q:sfo')">Restaurants
in San Francisco</a>