大家好,周五愉快!:)
1:我正在为学校建立一个 .net 网站,我想建立一个调查,您应该检查其中一个选项(无线电输入)并单击“投票”。
我以这种方式构建了一个表格:
<form runat="server">
<div id="voteBox">
<h3 class="heading">Lorem ipsum dolor sit amet</h3>
<asp:RadioButton runat="server" ID="messi" GroupName="players" /><h5 class="text">מסי</h5>
<asp:RadioButton runat="server" ID="iniesta" CssClass="iniesta" GroupName="players" /><h5 class="text" style="margin-right: 50px; margin-top: -20px;">איניאסטה</h5>
<asp:RadioButton runat="server" ID="xavi" CssClass="xavi" GroupName="players" /><h5 class="text" style="margin-right: 50px; margin-top: -20px;">צאבי</h5>
<asp:RadioButton runat="server" ID="pedro" CssClass="pedro" GroupName="players" /><h5 class="text" style="margin-right: 50px; margin-top: -20px;">פדרו</h5>
<asp:Button ID="submit" runat="server" Text=" הצבע " cssClass="submitButt" style="margin-top: -10px; margin-right: 210px;" onClick="countVote" />
</div>
</form>
从这里,我如何才能知道单击按钮时是否选择了其中一个选项,而不是找到 put 选择的是哪个选项。
2:为了保留服务器中的投票,我想使用应用程序变量。您能否指导我如何制作这些变量并在选择和投票时提高它们的价值。
提前谢谢你,伊利亚