<%
Dim hnIter, hn
Set hnIter = HouseholdController.householderNames.Iterator()
If Not hnIter.HasNext() Then
%>
No householder names recorded.
Add one
<%
Else
%>
| Name |
Type |
Letter Status |
Actions |
<%
Do While hnIter.HasNext()
Set hn = hnIter.GetNext()
%>
|
<%= Server.HTMLEncode(hn.Name & "") %>
|
<% If HouseholdController.household.IsBusiness = 1 Then %>
Business
<% Else %>
Residential
<% End If %>
|
|
Edit
|
<%
Loop
%>
<%
End If
%>