リピーターコントロールがあり、各セルにテキスト、入札ボタン、入札金額のテキストボックスがあります。ユーザーが同じセルのボタンをクリックしたときにテキストボックスの値(入札額)を取得しようとしているので、入札額を検証できます。どんな助けでも大歓迎です。
これが私の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を取得できますが、その特定のセルのテキストボックス値のみを取得する必要があります。
ありがとうございました