stevo_ said:
SaraJoRedux said:
*snip*
Thats fine.. are you actually databinding it?

repeater.DataSource = blah;
repeater.DataBind();

Also, while eval is great and all that it is using reflection and doesn't really help you if you refactor properties at all.. the dataitem is the object that is getting bound to that repeateritem.. so you can actually just cast it..

<%# ((MyType)Container.DataItem).DateCreated %>
yes, the error wasn't the way I was referencing it. Jumped the gun Smiley.

thanks!