I have a Form View control that I'm binding to a SQL Server database.
Some of the info in the record that I call is going to be null so I dont want to display this info but I would like to display something else.
Its simple in asp:
<% if rs("CustID") <> "" then%>
Name: <%=rs("CustName")%>
<% else %>
N/A
<% end if %>
Any help would be appreciated.