我有2个单选按钮,我想设置一个特定条件,如
如果value=1
然后将文件保存在abc位置,如果value=2
则保存文件xyz位置
<tr>
<td class="case_heading" height="20" width="150" align="right">Mode : </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>
答案 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.
}