I was afraid my original message was not clear enough. I'm wanting to do what they have done in the example: How do you enter Default Values into ASP-db's Edit Forms? on http://www.aspdb.com/properties/EDT-01.asp?ID=EDT-01, where NYTimes and XOOM are links. The only exception is I will be linking to an asp page passing a number to the page. I can pass the number with no problem but I need to know how to only link certain records in a field (ie: any record that has a status of billed). The example shows only two records linked in the name field but the code at the bottom does not show how this was done because it's talking about a different subject. The code they have listed is:


<%
Set MyDb = Server.CreateObject(&#34;ASPdb.Pro&#34 &#39; Create the ASP-db object
MyDb.dbQuickProps = &#34;5011;;{eople;Dual-Horiz;4;std;./images/&#34; &#39; Set its std properties
MyDb.dbMDB = Server.MapPath(&#34;.pro-demo.mdb&#34 &#39; Point to the std pro-demo database
Mydb.dbNavigationItem = &#34;Next, Prev, Gridrow, Add, Update, Edit, Delete&#34; &#39; Choose the navigation buttons to use
MyDb.dbFormDisplayFlds = &#34;-1&#34; &#39; Don&#39;t show the form at all

&#39; Note: Replace std. delimiters (;,) on following line because we use comma inside the heading parameters
Mydb.dbEditFlds = &#34;(;|)Name[John Doe]|Age|Salary[15000]|&#34; &_
&#34;NetWorth|LastUpdatedDate[DATE(mm/dd/yy)]|AddHeading=&#34; &_
&#34;<H3>Add a new record</H3>Fill out the fields, and click &#34; &_
&#34;the &#39;Add&#39; button below|EditHeading=<H3>Add / Update / &#34; &_
&#34;Delete the current record</H3>(Please don&#39;t delete all the &#34; &_
&#34;records)<BR> |DeleteHeading=<H3>Delete the current &#34; &_
&#34;record</H3>(Please don&#39;t delete all the records)<BR>&#34; &_
&#34; |UpdateHeading=<H3>Update the current record</H3>&#34;
Mydb.dbEditParams = &#34;TableName=People,BookMarkFlds=id,TableTag=Bor der=2,RecordScope=single&#34;
MyDb.ASPdbPro &#39; Display it!
%>

Original Message:
I want to only link to another asp page if the field contents meet the required. I have found information on the interprise addition and I have seen it in the examples and the code was listed but not for that particular part of the program. Can anyone help me out?

A little more detail....

The field I want to link is Status but only if the status field is showing billed. It it is I want to link another asp page that will bring up the invoice. If the job is shipped or proof there would be no invoice records as of yet.

If you need more details please feel free to email me. Thanks in advance!