No sería más fácil declarar como protected tu variable Total y hacer un funcion tambien protected para hacer el cálculo.
Ejemplo.
Cita: Protected Total as Integer = 0
Protected Function getTotal(a As Integer, b As Integer) as Integer
Total = Total + a + b
return Total
End Function
Y tu HTML del repeater:
Cita: <asp:Repeater id="rptTotal" runat="server">
<ItemTemplate>
<TR bgColor="<%=strBgcolor%>">
<asp:label id="Label14" runat="server">
<%# getTotal (CInt(DataBinder.Eval (Container.DataItem, "TotalApto")),CInt(DataBinder.Eval (Container.DataItem, "TotalLocal"))) %>
...
...
Espero que me hayas cachado la idea y te funcione..
Salu2