我有一个中继器控件,在每个单元格中都有一些文本、出价按钮和一个用于出价金额的文本框。当用户单击同一单元格中的按钮时,我试图获取文本框值(出价金额),以便我可以验证出价金额。任何帮助将不胜感激。
这是我的html表格代码:
<table id="values" class="values" border="3">
<tr>
<td align="center" style="white-space:nowrap">
<span class="MainBgContent_UpperRight_Title" style="height:25px;max-height:25px">Your Bid: $
<asp:TextBox ID="tbBid" CssClass="bids" Style="width: 30px" runat="server" Text=''></asp:TextBox>
</span>
<div style="height:10px;clear:both;"></div>
<div class="offer" style="width:100px;height:30px;line-height:20px;">
<asp:Button style="width:100px;height:30px;line-height:20px;" Visible="true" CssClass="btnSubmitBid" ID="lbBid" Text="BID" runat="Server" CommandName="makeBid" ></asp:Button>
</div>
<div style="height:20px;clear:both;"></div>
</td>
</tr>
</table>
我可以通过类名 btnSubmitBid 获取按钮的 ID,但只需要获取该特定单元格的文本框值。
谢谢你