ID="situps"とID="pushups"の2つのテキストボックスがあります。それらがDivにある理由は、タブレットで使用する場合にのみ数字パッドを使用する必要があるためです。C#でそのIDを取得する方法があるかどうか疑問に思いました。テキストボックスのコードは次のとおりです。
<div style="display:none">
<asp:TextBox ID="situps" runat="server" Height="16px"
ontextchanged="TextBox1_TextChanged" Width="108px"></asp:TextBox>
</div>
<input onblur="document.getElementById('<%=Sits.ClientID %>').value = this.value" type="tel" style="width: 86px" />
<div style="display:none">
<asp:TextBox ID="pushups" runat="server" Height="16px"
ontextchanged="TextBox1_TextChanged" Width="108px"></asp:TextBox>
</div>
<br />
Push-ups <input onblur="document.getElementById('<%=Push.ClientID %>').value =
this.value" type="tel" style="width: 86px" />
<br />
フォームビュー内でラベルを取得する方法を理解しましたが、フォームビュー外のtexboxからDIVIDを取得する方法を理解できません。
ありがとう!!!