<td class="style1" >
<table id="tab1">
<tr>
<th width="120">商品名称</th>
<th width="180" style="height: 27px">市场价</th>
<th width="100" style="height: 27px">商品积分</th>
<th width="80" style="height: 27px">商品数量(件)</th>
<th width="100" style="height: 27px">所需支付(积分)</th>
</tr>
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<tr>
<td width="100"><%#Eval("gift_name")%></td>
<td width="100"><%#Eval("Gift_price")%></td>
<td width="100"><%#Eval("Gift_Integral")%></td>
<td width="100"><input type="text" value="<%#Eval("total")%>" onkeyup="fun()" /></td>
<td width="100"id="td<%#Eval("gift_id") %>"></td>
</tr>
</ItemTemplate>
</asp:Repeater>
</table>
</td>
"要在后台取得绑定的数据要怎么做"这一句不理解,你的意思是绑定Repeater吗?如果是给控件的DataSource绑定就可以了。
绑定Repeater的OnItemDataBound事件,在事件处理函数中取得绑定的item,e.Item.DataItem
e.Item.DataItem中就能够取得需要的数据。