从html单选按钮获取值 – 在aspx-c#

前端之家收集整理的这篇文章主要介绍了从html单选按钮获取值 – 在aspx-c#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下 HTML代码
<form name="Register1" action="Register.aspx" id="registerform" method="post" 
      runat="server" style="margin-top: 15px;">
    <input type="radio" name="Gender" value="male" />male
    <input type="radio" name="Gender" value="female" />female
</form>

我的问题是如何在c#页面中将选定的值变量变量?

我试过这个:

Gender = Request.Form["Gender"].ToString();

但它没有工作…

解决方法

把你的代码放在这里:
if (Request.Form["Gender"] != null)
 {
     string selectedGender = Request.Form["Gender"].ToString();
 }

请注意,如果没有选择RadioButton,Request.Form [“Gender”]将为null.

看下面的标记

<form id="form1" runat="server" method="post">
    <input type="radio" name="Gender" value="male" id="test" checked="checked" />
    male
    <input type="radio" name="Gender" value="female" />female
    <input type="submit" value="test" />
    <asp:Button ID="btn" runat="server" Text="value" />
</form>

对于两个按钮,即输入type =“submit”和通常的asp:button,Request.Form [“Gender”]将在PostBack上具有一些值,只要选择了RadioButtons.

是的,仅在PostBack上,即当您按下任一按钮,而不是在第一次加载时.

原文链接:https://www.f2er.com/html/227900.html

猜你在找的HTML相关文章