我有两个文本框ID =“仰卧起坐”和ID =“俯卧撑”它们在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 />
我已经弄清楚如何在窗体视图中检索标签,但无法弄清楚如何从formview之外的texbox中获取DIV ID。
感谢!!!
答案 0 :(得分:0)
我想我犯了一个简单的错误。我一定有重复的名字仰卧起坐和俯卧撑。我现在能够抓住ID !!