You can access it through the DataItem:
<%# DataBinder.Eval(Container.DataItem, "myPropertyName")%>'
If you need a text box, for example:
<asp:Label ID="MyProp" runat="server" Text='<%#Eval("myPropertyName") %>' />
If you only need the full object:
<%# (MyType)Container.DataItem %>
Nick craver
source share