Wrap an if statement around the link to the detail page. Something like
below (ASP code, you will have to modify for your selected server model):
<% If (rsMyRecordset.Fields.Item("myField").Value) <> "" Then %>
<A HREF="DetailPage.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & "ID=" &
rsMyRecordset.Fields.Item("myField").Value
%>"><%=(rsMyRecordset.Fields.Item("myField").Value )%></A>
<% End If %>
"fireman sam" <webforumsuser (AT) macromedia (DOT) com> wrote
Quote:
Help please, I've created a master/detail page no problem but on the
master page I only want the link to the detail page to be active if there is
|
data in a particular field in that record.