A lot of you folks are playing with the templates now. Hope you like it. Majority are still in the level 1 form/filter/edit replacement templates in which the field tags [[fieldname]] are corresponding to the ones in the Grid/Form. Pretty soon you'll start to desing your own template from scratch. The following is an example (CaseStudy 47 - New) as a reference.

File=C47.asp

<%
Set X=Server.CreateObject(&#34;AspDB.Y2K&#34
X.dbQuickProps=&#34;1;NWIND;Employees;dual-horiz;4;std;/images/;ACCESS;9;;;false;false&#34;
X.dbDisplayLookUpList=&#34;(;|)ReportsTo||SELECT EmployeeID, FirstName & &#39; &#39; & Lastname as Name FROM Employees&#34;
&#39;Make id as currency
X.dbMagicCell=&#34;EmployeeID,,format=[currency]&#34;
X.dbExportFlds=&#34;0,1,2,16&#34;
X.dbOptions=&#34;ExportMagic=true&#34;
X.ASpdbY2k
X.ASPdbSendTemplate(&#34;CustomTemplate.htm&#34
%>

File=CustomTemplate.htm

<Center><H3>Custom Template Demo</H3></Center>
EmployeeID: [[ASPdb_1_EmployeeID:S]]<BR>
LastName:[[ASPdb_1_LastName:S]]<BR>
FirstName:[[ASpdb_1_FirstName:S]]<BR>
ReportsTo:[[ASPdb_1_ReportsTo:S]]

Noticed that all the Magic and Lookup filters are honored !!!