yes, the error wasn't the way I was referencing it. Jumped the gunstevo_ said:Thats fine.. are you actually databinding it?SaraJoRedux said:*snip*
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 %>
thanks!