如何在asp.net中使用html控件单选按钮

时间:2015-10-16 06:41:27

标签: html asp.net html5 c#-4.0

我有2个单选按钮,我想设置一个特定条件,如

如果value=1然后将文件保存在abc位置,如果value=2则保存文件xyz位置

<tr>
    <td class="case_heading" height="20" width="150" align="right">Mode :&nbsp;&nbsp;&nbsp;</td>
    <td class="case_txt" height="20" width="250" align="left">
    <input type="radio" name="rbMode" checked value="1" onclick="javascript:GetModeValue(this.value);" />Assignment
    <input type="radio" name="rbMode" value="2" onclick="javascript:GetModeValue(this.value);" />De-Assignment
    </td>
</tr>   

1 个答案:

答案 0 :(得分:1)

尝试使用Request.Form["radion_button_name"]

e.g

string strPlace='';

if (Request.Form["rbMode"] != null)
 {
     strPlace = Request.Form["rbMode"].ToString();
 }
//=strPlace will return Null if No radio button is selected.

并根据所选单选按钮上的值使用您的代码。

if(strPlace=='1')
{
//save image in location 1
}
else if(strPlace=='2')
{
//save image in location 2
}
else
{
//error you have to select the location type using radio button.
}