<%# 1 + 1 %>
Seriously though, you can put pratically anything inside data binding syntax. If your data item were numeric:
<%# Container.DataItem * 12 %>
If it is a string:
<%# Container.DataItem + "Hello World" %>
and so on. To calculate a result of some fields as another example then this might work:
<#% DataBinder.Eval(Container.DataItem, "Qty") * DataBinder.Eval(Container.DataItem, "PricePerItem") %>
-
Peter