If you are using an update panel inside of a repeater’s ItemTemplate you must either use Eval() instead of accessing the data item directly, or you must explicitly cast the data item:
((System.Web.UI.WebControls.RepeaterItem)(Container)).DataItem
That is all
Thanks a ton dude, it was driving me nuts.
Perfect. Thanks.