Есть ли у вашего объекта свойство с именем "code". Помните, что он чувствителен к регистру.
например. Если бы ваш объект был ...
public class MyObj
{
public string Code { get; set; }
public string Description { get; set; }
}
И вы связывали Collection<MyObj>
с вашим источником данных,
Тогда ваш ретранслятор будет выглядеть ...
<asp:repeater id="Repeater1" runat="server">
<headertemplate>
<table border="1">
<tr>
<td><b>Code</b></td>
<td><b>Description</b></td>
</tr>
</headertemplate>
<itemtemplate>
<tr>
<td> <%# Eval("Code") %> </td>
<td> <%# Eval("Description") %> </td>
</tr>
</itemtemplate>
<footertemplate>
</table>
</footertemplate>
</asp:repeater>