use DisplayNumber and DisplayText

This commit is contained in:
2009-07-24 21:32:16 +00:00
parent 73407f36d0
commit cf69fdd572
2 changed files with 21 additions and 15 deletions

View File

@@ -85,7 +85,7 @@ namespace VEPROMS.CSLA.Library
foreach (ItemInfo myItem in myEntry.MyContent.ContentItems)
{
ItemInfo proc = myItem.MyProcedure;
sb.Append(sep + proc.MyContent.Number + " - " + proc.MyContent.Text);
sb.Append(sep + proc.DisplayNumber + " - " + proc.DisplayText);
sep = "\r\n ";
}
}