【发布时间】:2014-07-13 23:21:10
【问题描述】:
我有一个更新面板,女巫每 30 秒在计时器中工作一次。
该页面包含许多复选框。当更新面板工作时,复选框会返回到它们的默认状态,尽管其中一些是在更新面板工作之前被选中的。
有什么帮助吗? 有复选框:
<div ID="campaignDiv" runat="server" >
<ul>
<li>
<span class="textDropdown">Text1</span>
<input type="checkbox" id="1" value="1"/>
<label for="1"></label>
</li>
<li>
<span class="textDropdown">Text1</span>
<input type="checkbox" id="2" value="2"/>
<label for="2"></label>
</li>
<li>
<span class="textDropdown">Text1</span>
<input type="checkbox" id="3" value="3"/>
<label for="3"></label>
</li>
<li>
<span class="textDropdown">Text1</span>
<input type="checkbox" id="4" value="4"/>
<label for="4"></label>
</li>
</ul>
</div>
【问题讨论】:
标签: c# jquery asp.net checkbox updatepanel