2015-10-16 34 views
0

我有2個單選按鈕和我想設置像一個特定的條件下使用HTML控件單選按鈕,如何在asp.net

如果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> 
+0

就是這樣?請分享您在JavaScript中嘗試過的內容。 – Prabhat

回答

1

使用try Request.Form["radion_button_name"]

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. 
}